wicket.extensions.markup.html.tree.table
Interface IRenderable
- All Superinterfaces:
- java.io.Serializable
- public interface IRenderable
- extends java.io.Serializable
Interface for lightweight cell renderes. If you are concerned about server
state size, have larget trees with read-only cells, implementing this
interface and using it instead of e.g. Label can decrease the memory
footprint of tree table.
- Author:
- Matej Knopp
|
Method Summary |
void |
render(javax.swing.tree.TreeNode node,
wicket.Response response)
Renders the content of the cell to the response. |
render
public void render(javax.swing.tree.TreeNode node,
wicket.Response response)
- Renders the content of the cell to the response.
- Parameters:
node - The node for the row. Will be null for headerresponse - Response where the renderer is supposed to write the content.
Copyright © 2004-2008 Wicket developers. All Rights Reserved.