diff options
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java | 2 | ||||
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java (renamed from src/com/itmill/toolkit/demo/featurebrowser/LabelsExample.java) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java index 220ac9960f..a018744838 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java @@ -49,7 +49,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements // Category, Name, Desc, Class, Viewed // Getting started: Labels { "Getting started", "Labels", "Some variations of Labels", - LabelsExample.class }, + LabelExample.class }, // Getting started: Buttons { "Getting started", "Buttons and links", "Some variations of Buttons and Links", ButtonExample.class }, diff --git a/src/com/itmill/toolkit/demo/featurebrowser/LabelsExample.java b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java index adb4b53bbc..41e14b8841 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/LabelsExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java @@ -12,7 +12,7 @@ import com.itmill.toolkit.ui.Panel; *
* @author IT Mill Ltd.
*/
-public class LabelsExample extends CustomComponent {
+public class LabelExample extends CustomComponent {
private static final String xhtml = "This text has <b>HTML</b> formatting.<br/>"
+ "A plain <i>Label</i> will show the markup, while a <u>XHTML-mode</u>"
@@ -23,7 +23,7 @@ public class LabelsExample extends CustomComponent { + "but not in a \"plain\" Label.\n\n"
+ " This is an indented row. \n Same indentation here.";
- public LabelsExample() {
+ public LabelExample() {
OrderedLayout main = new OrderedLayout();
main.setMargin(true);
|