summaryrefslogtreecommitdiffstats
path: root/vaadin-app/src/ch/asynk/helloworld
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-09-25 13:25:53 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-09-25 13:25:53 +0200
commita08a03d81ab9755679d3d393fc843e9f55608250 (patch)
tree21d5edb216272c1f75d17207f6dcf73652b9613c /vaadin-app/src/ch/asynk/helloworld
parentb3ca7c41f01f93418cbd1a3812acce12ce7080d5 (diff)
downloadskeletons-a08a03d81ab9755679d3d393fc843e9f55608250.zip
skeletons-a08a03d81ab9755679d3d393fc843e9f55608250.tar.gz
vaadim-app: add button tooltip
Diffstat (limited to 'vaadin-app/src/ch/asynk/helloworld')
-rw-r--r--vaadin-app/src/ch/asynk/helloworld/HelloWorldApp.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/vaadin-app/src/ch/asynk/helloworld/HelloWorldApp.java b/vaadin-app/src/ch/asynk/helloworld/HelloWorldApp.java
index e0d0b6b..17deb07 100644
--- a/vaadin-app/src/ch/asynk/helloworld/HelloWorldApp.java
+++ b/vaadin-app/src/ch/asynk/helloworld/HelloWorldApp.java
@@ -29,6 +29,7 @@ public class HelloWorldApp extends Application {
}));
//
Button closeButton = new Button("close the application");
+ closeButton.setDescription("This will close the application");
mainWindow.addComponent(closeButton );
closeButton.addListener( new Button.ClickListener() {
@Override