diff options
author | Marko Grönroos <magi@iki.fi> | 2008-09-30 14:16:11 +0000 |
---|---|---|
committer | Marko Grönroos <magi@iki.fi> | 2008-09-30 14:16:11 +0000 |
commit | 89930e75c283974c36f98aa17ad89d2fb061570c (patch) | |
tree | b3322056ac88845e88301164ba52e666b8794966 /src/com/itmill/toolkit/ui/CustomLayout.java | |
parent | 13b5a11288f11dddbe78d1d51b263bfc4ea9e14f (diff) | |
download | vaadin-framework-89930e75c283974c36f98aa17ad89d2fb061570c.tar.gz vaadin-framework-89930e75c283974c36f98aa17ad89d2fb061570c.zip |
Reverted [5565]. Had committed extra files.
svn changeset:5566/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/CustomLayout.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/CustomLayout.java | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomLayout.java b/src/com/itmill/toolkit/ui/CustomLayout.java index 82ca404a13..06ef2923ea 100644 --- a/src/com/itmill/toolkit/ui/CustomLayout.java +++ b/src/com/itmill/toolkit/ui/CustomLayout.java @@ -15,25 +15,24 @@ import com.itmill.toolkit.terminal.PaintTarget; /** * <p> - * A container component with freely designed layout and style. The layout + * A container component with freely designed layout and style. The container * consists of items with textually represented locations. Each item contains - * one sub-component, which can be any Toolkit component, such as a layout. - * The adapter and theme are responsible for rendering the - * layout with a given style by placing the items in the defined + * one sub-component. The adapter and theme are responsible for rendering the + * layout with given style by placing the items on the screen in defined * locations. * </p> * * <p> - * The placement of the locations is not fixed - different themes can define the - * locations in a way that is suitable for them. One typical example would be to + * The definition of locations is not fixed - the each style can define its + * locations in a way that is suitable for it. One typical example would be to * create visual design for a web site as a custom layout: the visual design - * would define locations for "menu", "body", and "title", for example. The layout - * would then be implemented as an XHTML template for each theme. + * could define locations for "menu", "body" and "title" for example. The layout + * would then be implemented as XLS-template with for given style. * </p> * * <p> - * The default theme handles the styles that are not defined by drawing the - * subcomponents just as in OrderedLayout. + * The default theme handles the styles that are not defined by just drawing the + * subcomponents as in OrderedLayout. * </p> * * @author IT Mill Ltd. |