diff options
author | Marc Englund <marc.englund@itmill.com> | 2007-11-19 14:03:05 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2007-11-19 14:03:05 +0000 |
commit | f2e3722df9676436680afc0f1991e91e1696fb99 (patch) | |
tree | 6f255ff78abaf96f1e71a1f2c9ecd3b66647f4a2 /src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java | |
parent | 93291f532db9d545cf2a8dd98e2671f27cd197b0 (diff) | |
download | vaadin-framework-f2e3722df9676436680afc0f1991e91e1696fb99.tar.gz vaadin-framework-f2e3722df9676436680afc0f1991e91e1696fb99.zip |
MASS REFORMAT.
According to http://toolkit.intra.itmill.com/trac/itmilltoolkit/wiki/CodingConventions
svn changeset:2864/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java')
-rw-r--r-- | src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java b/src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java index 84ac477c9c..f7cad07245 100644 --- a/src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java +++ b/src/com/itmill/toolkit/tests/featurebrowser/IntroTerminal.java @@ -34,41 +34,41 @@ import com.itmill.toolkit.ui.OrderedLayout; public class IntroTerminal extends Feature { - public IntroTerminal() { - super(); - } + public IntroTerminal() { + super(); + } - protected Component getDemoComponent() { + protected Component getDemoComponent() { - OrderedLayout l = new OrderedLayout(); + OrderedLayout l = new OrderedLayout(); - Label lab = new Label(); - lab.setStyle("featurebrowser-none"); - l.addComponent(lab); + Label lab = new Label(); + lab.setStyle("featurebrowser-none"); + l.addComponent(lab); - // Properties - propertyPanel = null; + // Properties + propertyPanel = null; - return l; - } + return l; + } - protected String getExampleSrc() { - return null; - } + protected String getExampleSrc() { + return null; + } - /** - * @see com.itmill.toolkit.tests.featurebrowser.Feature#getDescriptionXHTML() - */ - protected String getDescriptionXHTML() { - return ""; - } + /** + * @see com.itmill.toolkit.tests.featurebrowser.Feature#getDescriptionXHTML() + */ + protected String getDescriptionXHTML() { + return ""; + } - protected String getImage() { - return null; - } + protected String getImage() { + return null; + } - protected String getTitle() { - return "Introduction for terminals (TODO)"; - } + protected String getTitle() { + return "Introduction for terminals (TODO)"; + } } |