| org.apache.cocoon.portal.layout.CompositeLayout
All known Subclasses: org.apache.cocoon.portal.layout.impl.CompositeLayoutImpl,
CompositeLayout | public interface CompositeLayout extends Layout(Code) | | A composite layout is a layout that contains other layouts.
author: Carsten Ziegeler author: Volker Schmitt version: CVS $Id: CompositeLayout.java 433543 2006-08-22 06:22:54Z crossley $ |
addItem | void addItem(int index, Item item)(Code) | | Add indexed item to the itemList.
Parameters: index - index for the position inside the list Parameters: item - item to add |
addItem | void addItem(Item item)(Code) | | Add Item to the ItemList.
Parameters: item - item to add |
createNewItem | Item createNewItem()(Code) | | Create a new item.
This item is not added to the composite layout
|
getItem | Item getItem(int index)(Code) | | Get the item at the index
Parameters: index - The item or null |
getItemClassName | String getItemClassName()(Code) | | Returns the item class name. |
getItems | List getItems()(Code) | | Get the ItemList.
items |
getSize | int getSize()(Code) | | Get size of ItemList.
size |
removeItem | void removeItem(Item item)(Code) | | Remove an item
Parameters: item - |
setItemClassName | void setItemClassName(String value)(Code) | | Parameters: value - The item class name to set. |
|
|