]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed window names.
authorJani Laakso <jani.laakso@itmill.com>
Thu, 26 Apr 2007 13:33:48 +0000 (13:33 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Thu, 26 Apr 2007 13:33:48 +0000 (13:33 +0000)
svn changeset:1356/svn branch:trunk

src/com/itmill/toolkit/demo/CustomLayoutDemo.java
src/com/itmill/toolkit/demo/FilterSelect.java
src/com/itmill/toolkit/demo/KeyboardShortcut.java
src/com/itmill/toolkit/demo/Parameters.java
src/com/itmill/toolkit/demo/TreeFilesystem.java
src/com/itmill/toolkit/demo/TreeFilesystemContainer.java

index 7c6035b6a6673caf3c10a2a8527ea8e33d5173fa..d004745e8bdee9466f94fa6f4421854256c09df9 100644 (file)
@@ -36,7 +36,7 @@ public class CustomLayoutDemo extends com.itmill.toolkit.Application implements
         * Initialize Application. Demo components are added to main window.
         */
        public void init() {
-               Window mainWindow = new Window("Layout demo");
+               Window mainWindow = new Window("CustomLayout demo");
                setMainWindow(mainWindow);
 
                // set the application to use example -theme
index 97d7ee20da6d47a75dad7b5ca93dfeeaba0240b4..d952df0406b6494efe860bbbf276499d062ca58a 100644 (file)
@@ -41,7 +41,7 @@ public class FilterSelect extends com.itmill.toolkit.Application {
                 * - Create new window for the application - Give the window a visible
                 * title - Set the window to be the main window of the application
                 */
-               Window main = new Window("Filter select examples");
+               Window main = new Window("Filter select demo");
                setMainWindow(main);
 
                // default filter
index b60429fbecf4ff280c5c6eedeac40115631559b4..8dc09826412375084c83012ef0e0a90d97f056c9 100644 (file)
@@ -35,7 +35,7 @@ public class KeyboardShortcut extends com.itmill.toolkit.Application implements
                 * - Create new window for the application - Give the window a visible
                 * title - Set the window to be the main window of the application
                 */
-               main = new Window("Hello window");
+               main = new Window("Keyboard shortcuts demo");
                setMainWindow(main);
 
                // set the application to use Corporate -theme
index 3e9b7eebcb15abca83a7573228f5418f6593ee0b..72b9d03bf61ae72bd822c7c5e1842aff51d604b6 100644 (file)
@@ -27,7 +27,7 @@ public class Parameters extends com.itmill.toolkit.Application implements
        private Table params = new Table();
 
        public void init() {
-               Window main = new Window("Table demo");
+               Window main = new Window("Parameters demo");
                setMainWindow(main);
 
                // set the application to use Corporate -theme
index c6edabd8908aea6c0f0645305888b040c14cdbdb..d13fe49f767610851c955439e10c512e3ae9b26b 100644 (file)
@@ -25,7 +25,7 @@ public class TreeFilesystem extends com.itmill.toolkit.Application implements
        private Tree tree = new Tree();
 
        public void init() {
-               Window main = new Window("Tree demo");
+               Window main = new Window("Tree filesystem demo");
                setMainWindow(main);
 
                // set the application to use Corporate -theme
index d29c9b07ee3b305eb783926a9e6e15375b1c439e..a5e108734083b3648a228e744d22778284386786 100644 (file)
@@ -34,7 +34,7 @@ public class TreeFilesystemContainer extends com.itmill.toolkit.Application
        private Label fileProperties = new Label();
 
        public void init() {
-               Window main = new Window("Tree demo");
+               Window main = new Window("Tree FilesystemContainer demo");
                setMainWindow(main);
 
                // set the application to use Corporate -theme