Package org.zkoss.zkmax.bind.impl
Class BindOrgitemRenderer
- java.lang.Object
-
- org.zkoss.bind.impl.AbstractRenderer
-
- org.zkoss.zkmax.bind.impl.BindOrgitemRenderer
-
- All Implemented Interfaces:
java.io.Serializable,OrgitemRenderer<java.lang.Object>
public class BindOrgitemRenderer extends org.zkoss.bind.impl.AbstractRenderer implements OrgitemRenderer<java.lang.Object>
Orgitem renderer for binding.- Since:
- 8.6.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindOrgitemRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrender(Orgitem orgitem, java.lang.Object data, int index)Renders the data to the specified Orgitem.
-
-
-
Method Detail
-
render
public void render(Orgitem orgitem, java.lang.Object data, int index) throws java.lang.Exception
Description copied from interface:OrgitemRendererRenders the data to the specified Orgitem. Note: When this method is called, the orgitem should have no child at all. Orgnode is only component that allowed to be item's children. Do not append any Orgchildren to item in this method, an Orgchildren will be appended afterward.- Specified by:
renderin interfaceOrgitemRenderer<java.lang.Object>- Parameters:
orgitem- the Orgitem to render the result.data- that is used to render the Orgitemindex- the index of the data that is currently being rendered. Notice the index is the order of the siblings (i.e., data that belongs to the same parent).- Throws:
java.lang.Exception
-
-