From 9b856189be6d65cbdfbba45a940b2bf2bb05c7f8 Mon Sep 17 00:00:00 2001 From: Jani Laakso Date: Wed, 14 Mar 2007 15:02:59 +0000 Subject: [PATCH] Only identation changes. svn changeset:904/svn branch:trunk --- src/com/itmill/toolkit/demo/features/Feature.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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(); -- 2.39.5