summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarko Grönroos <magi@iki.fi>2008-09-30 14:33:12 +0000
committerMarko Grönroos <magi@iki.fi>2008-09-30 14:33:12 +0000
commitc21db5227f817310bdb5c7d10bad4a30f60b3b67 (patch)
tree9b937edb842d7aa1b31dffbd2efb90cd3dc9c949 /src
parent0649c0780d6ac0459ced2543d8fa3ec6da52325c (diff)
downloadvaadin-framework-c21db5227f817310bdb5c7d10bad4a30f60b3b67.tar.gz
vaadin-framework-c21db5227f817310bdb5c7d10bad4a30f60b3b67.zip
JavaDoc fix for #1968 (again). XHTML templates, not XSL. Also a bit more cleanup. Would need more work.
svn changeset:5569/svn branch:trunk
Diffstat (limited to 'src')
-rw-r--r--src/com/itmill/toolkit/ui/CustomLayout.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomLayout.java b/src/com/itmill/toolkit/ui/CustomLayout.java
index 06ef2923ea..82ca404a13 100644
--- a/src/com/itmill/toolkit/ui/CustomLayout.java
+++ b/src/com/itmill/toolkit/ui/CustomLayout.java
@@ -15,24 +15,25 @@ import com.itmill.toolkit.terminal.PaintTarget;
/**
* <p>
- * A container component with freely designed layout and style. The container
+ * A container component with freely designed layout and style. The layout
* consists of items with textually represented locations. Each item contains
- * 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
+ * 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
* locations.
* </p>
*
* <p>
- * 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
+ * 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
* create visual design for a web site as a custom layout: the visual design
- * could define locations for "menu", "body" and "title" for example. The layout
- * would then be implemented as XLS-template with for given style.
+ * would define locations for "menu", "body", and "title", for example. The layout
+ * would then be implemented as an XHTML template for each theme.
* </p>
*
* <p>
- * The default theme handles the styles that are not defined by just drawing the
- * subcomponents as in OrderedLayout.
+ * The default theme handles the styles that are not defined by drawing the
+ * subcomponents just as in OrderedLayout.
* </p>
*
* @author IT Mill Ltd.