summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Englund <marc.englund@itmill.com>2007-11-30 11:51:35 +0000
committerMarc Englund <marc.englund@itmill.com>2007-11-30 11:51:35 +0000
commit65352b06d6671658977250951398a3a3e6438e6e (patch)
treeab48c9f0375a5515b3ae9760e4b98e32c83af706
parent1fc8680fbcf7e7af551d8b227f267677b6a3d7ea (diff)
downloadvaadin-framework-65352b06d6671658977250951398a3a3e6438e6e.tar.gz
vaadin-framework-65352b06d6671658977250951398a3a3e6438e6e.zip
simplified
svn changeset:3061/svn branch:trunk
-rw-r--r--src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java
index 7eb07b81fe..62e023dd17 100644
--- a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java
+++ b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java
@@ -43,14 +43,8 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
private HashMap components = new HashMap();
- // category, name, desc, class, viewed
private static final Object[][] demos = new Object[][] {
- // START
- // Intro
- { "Intro", "About", "About this demo", Button.class, Boolean.FALSE },
- // Windowing
- { "Intro", "Windowing", "About windowing", WindowingExample.class,
- Boolean.FALSE },
+ // Category, Name, Desc, Class, Viewed
// Basic: Labels
{ "Basic", "Labels", "Some variations of Labels", Button.class,
Boolean.FALSE },
@@ -86,6 +80,9 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
{ "Misc", "Embedding",
"You can embed resources - another site in this case",
EmbeddedBrowserExample.class, Boolean.FALSE },
+ // Windowing
+ { "Misc", "Windowing", "About windowing", WindowingExample.class,
+ Boolean.FALSE },
// END
};
@@ -105,7 +102,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements
Object rootId = container.addItem();
Item item = container.getItem(rootId);
Property p = item.getItemProperty(PROPERTY_ID_NAME);
- p.setValue("All");
+ p.setValue("All examples");
for (int i = 0; i < demos.length; i++) {
Object[] demo = demos[i];
String section = (String) demo[0];