public abstract class EquivalentTransitionsProcessor extends java.lang.Object implements IMatchProcessor<EquivalentTransitionsMatch>
| Constructor and Description |
|---|
EquivalentTransitionsProcessor() |
| Modifier and Type | Method and Description |
|---|---|
void |
process(EquivalentTransitionsMatch match)
Defines the action that is to be executed on each match.
|
abstract void |
process(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Defines the action that is to be executed on each match.
|
public abstract void process(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
pTransition1 - the value of pattern parameter transition1 in the currently processed matchpTransition2 - the value of pattern parameter transition2 in the currently processed matchpPreState - the value of pattern parameter preState in the currently processed matchpPostState - the value of pattern parameter postState in the currently processed matchpublic void process(EquivalentTransitionsMatch match)
IMatchProcessorprocess in interface IMatchProcessor<EquivalentTransitionsMatch>match - a single match of the pattern that must be processed by the implementation of this method