Uses of Interface
modhelxs.ecore.Relation

Packages that use Relation
modhelxs.abstractsemantics   
modhelxs.ecore   
modhelxs.util   
 

Uses of Relation in modhelxs.abstractsemantics
 

Classes in modhelxs.abstractsemantics that implement Relation
 class Relation
          A Relation is an oriented connection between two pins.
 

Uses of Relation in modhelxs.ecore
 

Methods in modhelxs.ecore that return types with arguments of type Relation
 java.util.Collection<? extends Relation> InterfaceBlock.getAdaptation()
          Get the relations between the interface of this block and the interface of its internal model.
 java.util.Collection<? extends Relation> Pin.getIncomingRelations()
          Get the incoming relations for this pin (relations whose target is this pin).
 java.util.Collection<? extends Relation> Pin.getOutgoingRelations()
          Get the outgoing relations for this pin (relations whose origin is this pin).
 java.util.Collection<? extends Relation> BlockStructure.getRelations()
          Get the relations between the pins of the blocks of this structure.
 

Uses of Relation in modhelxs.util
 

Fields in modhelxs.util with type parameters of type Relation
private  java.util.Set<Relation> BlockStructureNavHelper.filtered_internal_relations_
          Set of internal relations, with some relations filtered out
private  java.util.Set<Relation> BlockStructureNavHelper.input_relations_
          Set of input relations (relations from pins of the model to pins of the blocks)
private  java.util.Set<Relation> BlockStructureNavHelper.internal_relations_
          Set of internal relations (relations between pins that do not belong to the model)
private  java.util.Set<Relation> BlockStructureNavHelper.output_relations_
          Set of output relations (relations from pins of the blocks to pins of the model)
 

Methods in modhelxs.util that return types with arguments of type Relation
 java.util.Collection<Relation> BlockStructureNavHelper.getFilteredInternalRelations()
          Return internal relations (not involving the model) ignoring those that are filtered out
 java.util.Collection<Relation> BlockStructureNavHelper.getInputRelations()
          Return input relations (relations from pins of the model to pins of the blocks)
 java.util.Collection<Relation> BlockStructureNavHelper.getInternalRelations()
          Return internal relations (not involving the model)
 java.util.Collection<Relation> BlockStructureNavHelper.getOutputRelations()
          Return output relations (relations from pins of the blocks to pins of the model)