public class EnabledNegativeTransitionMatcher extends BaseMatcher<EnabledNegativeTransitionMatch>
Use the pattern matcher on a given model via on(ViatraQueryEngine),
e.g. in conjunction with ViatraQueryEngine#on(Notifier).
Matches of the pattern will be represented as EnabledNegativeTransitionMatch.
Original source:
pattern enabledNegativeTransition(transition : NegativeTransition, eventToken : EventToken, event : Event, automaton : Automaton) {
find latestEvent(event);
Event.type(event, eventType);
neg find transitionWithEventType(transition, eventType);
NegativeTransition.preState.eventTokens(transition, eventToken);
neg find eventProcessedByEventToken(event, eventToken);
Automaton.states(automaton, state);
State.outTransitions(state, transition);
}
EnabledNegativeTransitionMatch,
EnabledNegativeTransitionProcessor,
EnabledNegativeTransitionQuerySpecificationengine, querySpecification| Modifier and Type | Method and Description |
|---|---|
protected EnabledNegativeTransitionMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected EnabledNegativeTransitionMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
int |
countMatches(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static EnabledNegativeTransitionMatcher |
create() |
void |
forEachMatch(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton,
IMatchProcessor<? super EnabledNegativeTransitionMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton,
IMatchProcessor<? super EnabledNegativeTransitionMatch> processor)
Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
java.util.Collection<EnabledNegativeTransitionMatch> |
getAllMatches(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<Automaton> |
getAllValuesOfautomaton()
Retrieve the set of values that occur in matches for automaton.
|
java.util.Set<Automaton> |
getAllValuesOfautomaton(EnabledNegativeTransitionMatch partialMatch)
Retrieve the set of values that occur in matches for automaton.
|
java.util.Set<Automaton> |
getAllValuesOfautomaton(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent)
Retrieve the set of values that occur in matches for automaton.
|
java.util.Set<Event> |
getAllValuesOfevent()
Retrieve the set of values that occur in matches for event.
|
java.util.Set<Event> |
getAllValuesOfevent(EnabledNegativeTransitionMatch partialMatch)
Retrieve the set of values that occur in matches for event.
|
java.util.Set<Event> |
getAllValuesOfevent(NegativeTransition pTransition,
EventToken pEventToken,
Automaton pAutomaton)
Retrieve the set of values that occur in matches for event.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken()
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken(EnabledNegativeTransitionMatch partialMatch)
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken(NegativeTransition pTransition,
Event pEvent,
Automaton pAutomaton)
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<NegativeTransition> |
getAllValuesOftransition()
Retrieve the set of values that occur in matches for transition.
|
java.util.Set<NegativeTransition> |
getAllValuesOftransition(EnabledNegativeTransitionMatch partialMatch)
Retrieve the set of values that occur in matches for transition.
|
java.util.Set<NegativeTransition> |
getAllValuesOftransition(EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Retrieve the set of values that occur in matches for transition.
|
EnabledNegativeTransitionMatch |
getOneArbitraryMatch(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
EnabledNegativeTransitionMatch |
newMatch(NegativeTransition pTransition,
EventToken pEventToken,
Event pEvent,
Automaton pAutomaton)
Returns a new (partial) match.
|
static EnabledNegativeTransitionMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<EnabledNegativeTransitionMatcher> |
querySpecification() |
protected java.util.Set<Automaton> |
rawAccumulateAllValuesOfautomaton(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for automaton.
|
protected java.util.Set<Event> |
rawAccumulateAllValuesOfevent(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for event.
|
protected java.util.Set<EventToken> |
rawAccumulateAllValuesOfeventToken(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for eventToken.
|
protected java.util.Set<NegativeTransition> |
rawAccumulateAllValuesOftransition(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for transition.
|
protected EnabledNegativeTransitionMatch |
tupleToMatch(Tuple t) |
countMatches, countMatches, emptyArray, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getCapabilities, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, matchToArray, newEmptyMatch, newMatch, rawAccumulateAllValues, rawCountMatches, rawForEachMatch, rawForOneArbitraryMatch, rawGetAllMatches, rawGetAllValues, rawGetOneArbitraryMatch, rawHasMatch, setBackendpublic static EnabledNegativeTransitionMatcher on(ViatraQueryEngine engine) throws ViatraQueryException
engine - the existing VIATRA Query engine in which this matcher will be created.ViatraQueryException - if an error occurs during pattern matcher creationpublic static EnabledNegativeTransitionMatcher create() throws ViatraQueryException
ViatraQueryException - if an error occurs during pattern matcher creationpublic java.util.Collection<EnabledNegativeTransitionMatch> getAllMatches(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.public EnabledNegativeTransitionMatch getOneArbitraryMatch(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.public boolean hasMatch(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.public int countMatches(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.public void forEachMatch(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton, IMatchProcessor<? super EnabledNegativeTransitionMatch> processor)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.processor - the action that will process each pattern match.public boolean forOneArbitraryMatch(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton, IMatchProcessor<? super EnabledNegativeTransitionMatch> processor)
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.processor - the action that will process the selected match.public EnabledNegativeTransitionMatch newMatch(NegativeTransition pTransition, EventToken pEventToken, Event pEvent, Automaton pAutomaton)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch() to obtain a mutable match object.
pTransition - the fixed value of pattern parameter transition, or null if not bound.pEventToken - the fixed value of pattern parameter eventToken, or null if not bound.pEvent - the fixed value of pattern parameter event, or null if not bound.pAutomaton - the fixed value of pattern parameter automaton, or null if not bound.protected java.util.Set<NegativeTransition> rawAccumulateAllValuesOftransition(java.lang.Object[] parameters)
public java.util.Set<NegativeTransition> getAllValuesOftransition()
public java.util.Set<NegativeTransition> getAllValuesOftransition(EnabledNegativeTransitionMatch partialMatch)
public java.util.Set<NegativeTransition> getAllValuesOftransition(EventToken pEventToken, Event pEvent, Automaton pAutomaton)
protected java.util.Set<EventToken> rawAccumulateAllValuesOfeventToken(java.lang.Object[] parameters)
public java.util.Set<EventToken> getAllValuesOfeventToken()
public java.util.Set<EventToken> getAllValuesOfeventToken(EnabledNegativeTransitionMatch partialMatch)
public java.util.Set<EventToken> getAllValuesOfeventToken(NegativeTransition pTransition, Event pEvent, Automaton pAutomaton)
protected java.util.Set<Event> rawAccumulateAllValuesOfevent(java.lang.Object[] parameters)
public java.util.Set<Event> getAllValuesOfevent()
public java.util.Set<Event> getAllValuesOfevent(EnabledNegativeTransitionMatch partialMatch)
public java.util.Set<Event> getAllValuesOfevent(NegativeTransition pTransition, EventToken pEventToken, Automaton pAutomaton)
protected java.util.Set<Automaton> rawAccumulateAllValuesOfautomaton(java.lang.Object[] parameters)
public java.util.Set<Automaton> getAllValuesOfautomaton()
public java.util.Set<Automaton> getAllValuesOfautomaton(EnabledNegativeTransitionMatch partialMatch)
public java.util.Set<Automaton> getAllValuesOfautomaton(NegativeTransition pTransition, EventToken pEventToken, Event pEvent)
protected EnabledNegativeTransitionMatch tupleToMatch(Tuple t)
tupleToMatch in class BaseMatcher<EnabledNegativeTransitionMatch>protected EnabledNegativeTransitionMatch arrayToMatch(java.lang.Object[] match)
BaseMatcherarrayToMatch in class BaseMatcher<EnabledNegativeTransitionMatch>protected EnabledNegativeTransitionMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcherarrayToMatchMutable in class BaseMatcher<EnabledNegativeTransitionMatch>public static IQuerySpecification<EnabledNegativeTransitionMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException - if the pattern definition could not be loaded