Interface EvaluationStrategy
-
- All Known Implementing Classes:
NoopEvaluationStrategy
public interface EvaluationStrategyThis is used byParameterizedGraphConditionduring parameter evaluation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmodelMatched()Indicates that we have potentially found a match.voidmodelSubmissionRejected()Indicates that the match has been rejected, and we should reject any variables stored in theParameterValueStorefrom this match.voidmodelSubmitted(org.jboss.windup.graph.model.WindupVertexFrame model)Adds the model to the list matched by this set of parameter values.
-
-
-
Method Detail
-
modelMatched
void modelMatched()
Indicates that we have potentially found a match.
-
modelSubmitted
void modelSubmitted(org.jboss.windup.graph.model.WindupVertexFrame model)
Adds the model to the list matched by this set of parameter values.
-
modelSubmissionRejected
void modelSubmissionRejected()
Indicates that the match has been rejected, and we should reject any variables stored in theParameterValueStorefrom this match.
-
-