Interface IInnerElementSupplier
- 
- All Known Implementing Classes:
- AbstractElementSupplier,- AbstractFeatureElementSupplier
 
 public interface IInnerElementSupplierA custom supplier of inner elements of partial model nodes.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IPartialModelNode>getInnerElements(IPartialModelNode node, ComparisonContext comparisonContext, org.eclipse.xtext.scoping.IScopeProvider scopeProvider)Returns a list of inner elements for the specified partial model node.booleansupports(IPartialModelNode node)Checks if this provider supports the specified MD object property partial model node.
 
- 
- 
- 
Method Detail- 
supportsboolean supports(IPartialModelNode node) Checks if this provider supports the specified MD object property partial model node.- Parameters:
- node- the partial model node
- Returns:
- trueif the supplier supports the specified node, and- falseotherwise
 
 - 
getInnerElementsList<IPartialModelNode> getInnerElements(IPartialModelNode node, ComparisonContext comparisonContext, org.eclipse.xtext.scoping.IScopeProvider scopeProvider) Returns a list of inner elements for the specified partial model node.- Parameters:
- node- the partial model node, cannot be- null
- comparisonContext- the comparison context, cannot- null
- scopeProvider- the scope provider, cannot be- null
- Returns:
- a collection of inner elements, never null
 
 
- 
 
-