]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed debugId's from few components. Better naming
authorJani Laakso <jani.laakso@itmill.com>
Mon, 7 Jan 2008 14:50:55 +0000 (14:50 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Mon, 7 Jan 2008 14:50:55 +0000 (14:50 +0000)
svn changeset:3397/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 c4e6851adaa788bff343b4ff2f95daedf87f2a83..983aa9dd23de9a7ae7b2d22eca3dbb7bae4987e4 100644 (file)
@@ -144,7 +144,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
         }
 
         tree = new Tree();
-        tree.setDebugId("PID_MainMenu");
+        tree.setDebugId("FeatureBrowser: Main Tree");
         tree.setSelectable(true);
         tree.setMultiSelect(false);
         tree.setNullSelectionAllowed(false);
@@ -162,6 +162,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
         split.addComponent(split2);
 
         table = new Table();
+        table.setDebugId("FeatureBrowser: Main Table");
         table.getSize().setSizeFull();
         table.setColumnReorderingAllowed(true);
         table.setColumnCollapsingAllowed(true);
@@ -245,7 +246,6 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
                 OrderedLayout.ALIGNMENT_TOP);
 
         ts = new TabSheet();
-        ts.setDebugId("PIS_S_TS");
         ts.getSize().setSizeFull();
         ts.addTab(new Label(""), "Choose example", null);
         exp.addComponent(ts);
index 1f422a12c6b4cdfdcd92f58d576e2f1572607802..dc0c2254676754f194a451fbb836aa054fe09772 100644 (file)
@@ -57,7 +57,6 @@ public class TableExample extends CustomComponent implements Action.Handler,
 \r
         // "source" table with bells & whistlesenabled\r
         source = new Table("All creatures");\r
-        source.setDebugId("PID_AllCreatures");\r
         source.setPageLength(7);\r
         source.getSize().setWidth(550);\r
         source.setColumnCollapsingAllowed(true);\r
index b107f9e159290d1f24cd9eb74d0ba37fab0e3b84..fb9f0a34ffc9ff17531d5f7ad95e2f17db6f2800 100644 (file)
@@ -50,7 +50,6 @@ public class TreeExample extends CustomComponent implements Action.Handler,
         p.addComponent(new Label(desc));
         // Tree with a few items
         tree = new Tree();
-        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