public class PropertyIsCompositeMatcher extends BaseMatcher<PropertyIsCompositeMatch>
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 PropertyIsCompositeMatch
.
Original source:
(aggregation = AggregationKind::composite)
@Surrogate(feature = "isComposite")
@QueryExplorer(checked = false)
pattern propertyIsComposite(
property : Property, isComposite
) {
Property.aggregation(property, AggregationKind::composite);
isComposite == true;
} or {
Property.aggregation(property, aggregation);
aggregation != AggregationKind::composite;
isComposite == false;
}
PropertyIsCompositeMatch
,
PropertyIsCompositeProcessor
,
PropertyIsCompositeQuerySpecification
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected PropertyIsCompositeMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected PropertyIsCompositeMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
int |
countMatches(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static PropertyIsCompositeMatcher |
create() |
void |
forEachMatch(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite,
IMatchProcessor<? super PropertyIsCompositeMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite,
IMatchProcessor<? super PropertyIsCompositeMatch> 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<PropertyIsCompositeMatch> |
getAllMatches(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<java.lang.Boolean> |
getAllValuesOfisComposite()
Retrieve the set of values that occur in matches for isComposite.
|
java.util.Set<java.lang.Boolean> |
getAllValuesOfisComposite(org.eclipse.uml2.uml.Property pProperty)
Retrieve the set of values that occur in matches for isComposite.
|
java.util.Set<java.lang.Boolean> |
getAllValuesOfisComposite(PropertyIsCompositeMatch partialMatch)
Retrieve the set of values that occur in matches for isComposite.
|
java.util.Set<org.eclipse.uml2.uml.Property> |
getAllValuesOfproperty()
Retrieve the set of values that occur in matches for property.
|
java.util.Set<org.eclipse.uml2.uml.Property> |
getAllValuesOfproperty(java.lang.Boolean pIsComposite)
Retrieve the set of values that occur in matches for property.
|
java.util.Set<org.eclipse.uml2.uml.Property> |
getAllValuesOfproperty(PropertyIsCompositeMatch partialMatch)
Retrieve the set of values that occur in matches for property.
|
PropertyIsCompositeMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
PropertyIsCompositeMatch |
newMatch(org.eclipse.uml2.uml.Property pProperty,
java.lang.Boolean pIsComposite)
Returns a new (partial) match.
|
static PropertyIsCompositeMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<PropertyIsCompositeMatcher> |
querySpecification() |
protected java.util.Set<java.lang.Boolean> |
rawAccumulateAllValuesOfisComposite(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for isComposite.
|
protected java.util.Set<org.eclipse.uml2.uml.Property> |
rawAccumulateAllValuesOfproperty(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for property.
|
protected PropertyIsCompositeMatch |
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, setBackend
public static PropertyIsCompositeMatcher 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 PropertyIsCompositeMatcher create() throws ViatraQueryException
ViatraQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<PropertyIsCompositeMatch> getAllMatches(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.public PropertyIsCompositeMatch getOneArbitraryMatch(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.public boolean hasMatch(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.public int countMatches(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.public void forEachMatch(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite, IMatchProcessor<? super PropertyIsCompositeMatch> processor)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite, IMatchProcessor<? super PropertyIsCompositeMatch> processor)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.processor
- the action that will process the selected match.public PropertyIsCompositeMatch newMatch(org.eclipse.uml2.uml.Property pProperty, java.lang.Boolean pIsComposite)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pProperty
- the fixed value of pattern parameter property, or null if not bound.pIsComposite
- the fixed value of pattern parameter isComposite, or null if not bound.protected java.util.Set<org.eclipse.uml2.uml.Property> rawAccumulateAllValuesOfproperty(java.lang.Object[] parameters)
public java.util.Set<org.eclipse.uml2.uml.Property> getAllValuesOfproperty()
public java.util.Set<org.eclipse.uml2.uml.Property> getAllValuesOfproperty(PropertyIsCompositeMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Property> getAllValuesOfproperty(java.lang.Boolean pIsComposite)
protected java.util.Set<java.lang.Boolean> rawAccumulateAllValuesOfisComposite(java.lang.Object[] parameters)
public java.util.Set<java.lang.Boolean> getAllValuesOfisComposite()
public java.util.Set<java.lang.Boolean> getAllValuesOfisComposite(PropertyIsCompositeMatch partialMatch)
public java.util.Set<java.lang.Boolean> getAllValuesOfisComposite(org.eclipse.uml2.uml.Property pProperty)
protected PropertyIsCompositeMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<PropertyIsCompositeMatch>
protected PropertyIsCompositeMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<PropertyIsCompositeMatch>
protected PropertyIsCompositeMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<PropertyIsCompositeMatch>
public static IQuerySpecification<PropertyIsCompositeMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded