Package org.zkoss.zkmax.bind.impl
Class BindStepRenderer<E>
- java.lang.Object
-
- org.zkoss.bind.impl.AbstractRenderer
-
- org.zkoss.zkmax.bind.impl.BindStepRenderer<E>
-
- All Implemented Interfaces:
java.io.Serializable,StepRenderer<E>
public class BindStepRenderer<E> extends org.zkoss.bind.impl.AbstractRenderer implements StepRenderer<E>
Step renderer for binding.- Since:
- 9.0.0
- Author:
- jameschu
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindStepRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrender(Step step, E data, int index)Renders the data to the specified Step.
-
-
-
Method Detail
-
render
public void render(Step step, E data, int index) throws java.lang.Exception
Description copied from interface:StepRendererRenders the data to the specified Step.- Specified by:
renderin interfaceStepRenderer<E>- Parameters:
step- the Step to render the result.data- that is used to render the Stepindex- 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
-
-