]> source.dussan.org Git - vaadin-framework.git/commitdiff
Changed debug id's PID_S into PID and gave better names.
authorJani Laakso <jani.laakso@itmill.com>
Mon, 7 Jan 2008 14:03:45 +0000 (14:03 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Mon, 7 Jan 2008 14:03:45 +0000 (14:03 +0000)
svn changeset:3391/svn branch:trunk

src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java
src/com/itmill/toolkit/demo/featurebrowser/TableExample.java
src/com/itmill/toolkit/demo/featurebrowser/TreeExample.java

index e55acf1ddc8aa5d5a1f9a9c4005efe7362810371..c4e6851adaa788bff343b4ff2f95daedf87f2a83 100644 (file)
@@ -144,7 +144,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
         }
 
         tree = new Tree();
-        tree.setDebugId("PID_S_menu");
+        tree.setDebugId("PID_MainMenu");
         tree.setSelectable(true);
         tree.setMultiSelect(false);
         tree.setNullSelectionAllowed(false);
index c71513cf49e7ae54d243b8090ea2e7bb0523bea1..1f422a12c6b4cdfdcd92f58d576e2f1572607802 100644 (file)
@@ -57,7 +57,7 @@ public class TableExample extends CustomComponent implements Action.Handler,
 \r
         // "source" table with bells & whistlesenabled\r
         source = new Table("All creatures");\r
-        source.setDebugId("PID_S_ALLC");\r
+        source.setDebugId("PID_AllCreatures");\r
         source.setPageLength(7);\r
         source.getSize().setWidth(550);\r
         source.setColumnCollapsingAllowed(true);\r
index ac2c964db83bee062e2c7134c15606e6379ec05f..b107f9e159290d1f24cd9eb74d0ba37fab0e3b84 100644 (file)
@@ -50,7 +50,7 @@ public class TreeExample extends CustomComponent implements Action.Handler,
         p.addComponent(new Label(desc));
         // Tree with a few items
         tree = new Tree();
-        tree.setDebugId("PID_S_testtree");
+        tree.setDebugId("PID_TreeExample");
         tree.setImmediate(true);
         // we'll use a property for caption instead of the item id ("value"),
         // so that multiple items can have the same caption