Interface IterationBuilderVar
-
- All Known Subinterfaces:
IterationBuilderOver
- All Known Implementing Classes:
Iteration
public interface IterationBuilderVarIntermediate step to construct anIteration.- Author:
- Lincoln Baxter, III
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IterationBuilderPerformperform(org.ocpsoft.rewrite.config.Operation operation)Perform the givenOperationwhen the conditions set in thisIterationare met.IterationBuilderPerformperform(org.ocpsoft.rewrite.config.Operation... operations)Perform the givenOperationinstances when the conditions set in thisIterationare met.IterationBuilderWhenwhen(org.ocpsoft.rewrite.config.Condition condition)A condition which decides for each frame whetherperform(Operation)orIteration.otherwise(Operation)will be processed.
-
-
-
Method Detail
-
when
IterationBuilderWhen when(org.ocpsoft.rewrite.config.Condition condition)
A condition which decides for each frame whetherperform(Operation)orIteration.otherwise(Operation)will be processed.
-
perform
IterationBuilderPerform perform(org.ocpsoft.rewrite.config.Operation operation)
Perform the givenOperationwhen the conditions set in thisIterationare met.
-
perform
IterationBuilderPerform perform(org.ocpsoft.rewrite.config.Operation... operations)
Perform the givenOperationinstances when the conditions set in thisIterationare met.
-
-