diff options
author | Jani Laakso <jani.laakso@itmill.com> | 2007-02-06 17:39:57 +0000 |
---|---|---|
committer | Jani Laakso <jani.laakso@itmill.com> | 2007-02-06 17:39:57 +0000 |
commit | 211cdf2fe9bede01b8b9e3737c327ce133df2d50 (patch) | |
tree | 256108b1cfd7d12aa81486b953ee48f027f81f2e /src/com/itmill/toolkit/demo/features/IntroBasic.java | |
parent | 90ff5beedd0f9b5758c4ce96c753da51e22b9efb (diff) | |
download | vaadin-framework-211cdf2fe9bede01b8b9e3737c327ce133df2d50.tar.gz vaadin-framework-211cdf2fe9bede01b8b9e3737c327ce133df2d50.zip |
Added pages for every item of menu. Content is still missing.
Fixed #307 Feature Browser display UIDL on some menu items, e.g. UI Components
svn changeset:487/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/demo/features/IntroBasic.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/features/IntroBasic.java | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/demo/features/IntroBasic.java b/src/com/itmill/toolkit/demo/features/IntroBasic.java new file mode 100644 index 0000000000..d3e150276b --- /dev/null +++ b/src/com/itmill/toolkit/demo/features/IntroBasic.java @@ -0,0 +1,74 @@ +/* ************************************************************************* + + IT Mill Toolkit + + Development of Browser User Interfaces Made Easy + + Copyright (C) 2000-2006 IT Mill Ltd + + ************************************************************************* + + This product is distributed under commercial license that can be found + from the product package on license.pdf. Use of this product might + require purchasing a commercial license from IT Mill Ltd. For guidelines + on usage, see licensing-guidelines.html + + ************************************************************************* + + For more information, contact: + + IT Mill Ltd phone: +358 2 4802 7180 + Ruukinkatu 2-4 fax: +358 2 4802 7181 + 20540, Turku email: info@itmill.com + Finland company www: www.itmill.com + + Primary source for information and releases: www.itmill.com + + ********************************************************************** */ + +package com.itmill.toolkit.demo.features; + +import com.itmill.toolkit.ui.Component; +import com.itmill.toolkit.ui.Label; +import com.itmill.toolkit.ui.OrderedLayout; + +public class IntroBasic extends Feature { + + public IntroBasic() { + super(); + } + + protected Component getDemoComponent() { + + OrderedLayout l = new OrderedLayout(); + + Label lab = new Label(); + lab.setStyle("featurebrowser-none"); + l.addComponent(lab); + + // Properties + propertyPanel = null; + + return l; + } + + protected String getExampleSrc() { + return ""; + } + + /** + * @see com.itmill.toolkit.demo.features.Feature#getDescriptionXHTML() + */ + protected String getDescriptionXHTML() { + return ""; + } + + protected String getImage() { + return ""; + } + + protected String getTitle() { + return "Introduction of basic UI components"; + } + +} |