Package org.zkoss.zkmax.zul
Interface StepRenderer<T>
-
- All Known Implementing Classes:
BindStepRenderer
public interface StepRenderer<T>To handle the resolver a template of a step renderer.- Since:
- 9.0.0
- Author:
- jameschu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrender(Step step, T data, int index)Renders the data to the specified Step.
-
-
-
Method Detail
-
render
void render(Step step, T data, int index) throws java.lang.Exception
Renders the data to the specified Step.- 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
-
-