From: Jani Laakso Date: Wed, 14 Mar 2007 15:02:59 +0000 (+0000) Subject: Only identation changes. X-Git-Tag: 6.7.0.beta1~6519 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9b856189be6d65cbdfbba45a940b2bf2bb05c7f8;p=vaadin-framework.git Only identation changes. svn changeset:904/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/demo/features/Feature.java b/src/com/itmill/toolkit/demo/features/Feature.java index 9c86211186..daaf7aa3ee 100644 --- a/src/com/itmill/toolkit/demo/features/Feature.java +++ b/src/com/itmill/toolkit/demo/features/Feature.java @@ -52,7 +52,7 @@ public abstract class Feature extends CustomComponent { protected PropertyPanel propertyPanel; private Label javadoc; - + private Label description; /** Constuctor for the feature component */ @@ -119,7 +119,7 @@ public abstract class Feature extends CustomComponent { ts.addTab(mainLayout, "Description", null); } - + // Properties table tab ts.addTab(getPropertyPanel().getAllProperties(), "Properties", null); @@ -135,11 +135,10 @@ public abstract class Feature extends CustomComponent { l.addComponent(new Label( "// " + getTitle() + " example", Label.CONTENT_XHTML)); - l.addComponent(new Label(example, - Label.CONTENT_PREFORMATTED)); + l.addComponent(new Label(example, Label.CONTENT_PREFORMATTED)); ts.addTab(l, "Code Sample", null); } - + layout.addComponent(ts); } @@ -183,7 +182,7 @@ public abstract class Feature extends CustomComponent { public void setPropsReminder(boolean propsReminder) { this.propsReminder = propsReminder; } - + public void updateDescription() { String label = ""; label += getDescriptionXHTML();