Changeset 5569

Show
Ignore:
Timestamp:
09/30/08 14:33:12 (3 months ago)
Author:
magi@…
Message:

JavaDoc? fix for #1968 (again). XHTML templates, not XSL. Also a bit more cleanup. Would need more work.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/com/itmill/toolkit/ui/CustomLayout.java

    r5568 r5569  
    1616/** 
    1717 * <p> 
    18  * A container component with freely designed layout and style. The container 
     18 * A container component with freely designed layout and style. The layout 
    1919 * consists of items with textually represented locations. Each item contains 
    20  * one sub-component. The adapter and theme are responsible for rendering the 
    21  * layout with given style by placing the items on the screen in defined 
     20 * one sub-component, which can be any Toolkit component, such as a layout. 
     21 * The adapter and theme are responsible for rendering the 
     22 * layout with a given style by placing the items in the defined 
    2223 * locations. 
    2324 * </p> 
    2425 *  
    2526 * <p> 
    26  * The definition of locations is not fixed - the each style can define its 
    27  * locations in a way that is suitable for it. One typical example would be to 
     27 * The placement of the locations is not fixed - different themes can define the 
     28 * locations in a way that is suitable for them. One typical example would be to 
    2829 * create visual design for a web site as a custom layout: the visual design 
    29  * could define locations for "menu", "body" and "title" for example. The layout 
    30  * would then be implemented as XLS-template with for given style. 
     30 * would define locations for "menu", "body", and "title", for example. The layout 
     31 * would then be implemented as an XHTML template for each theme. 
    3132 * </p> 
    3233 *  
    3334 * <p> 
    34  * The default theme handles the styles that are not defined by just drawing the 
    35  * subcomponents as in OrderedLayout. 
     35 * The default theme handles the styles that are not defined by drawing the 
     36 * subcomponents just as in OrderedLayout. 
    3637 * </p> 
    3738 *