Uses of Class
modhelxs.abstractsemantics.Relation

Packages that use Relation
modhelxs.abstractsemantics   
modhelxs.mocs.sdf   
modhelxs.mocs.tfsm   
modhelxs.util   
 

Uses of Relation in modhelxs.abstractsemantics
 

Fields in modhelxs.abstractsemantics with type parameters of type Relation
private  java.util.List<Relation> InterfaceBlock.adaptation_
          The relations between the pins of the interface block and the pins of the internal model.
private  java.util.Set<Relation> Pin.incoming_
          The relations that have this pin as target.
private  java.util.Set<Relation> Pin.outgoing_
          The relations that have this pin as origin.
private  java.util.Collection<Relation> BlockStructure.relations_
          The relations between the pins of these blocks.
 

Methods in modhelxs.abstractsemantics that return Relation
abstract  Relation ObservableEntity.connect(Pin mine, Pin other)
          Connect one of my pins to another pin.
 Relation Model.connect(Pin mine, Pin other)
          Connect one of my pins to another pin.
 Relation InterfaceBlock.connect(Pin mine, Pin other)
          Connect one of my pins to another pin.
 Relation Block.connect(Pin mine, Pin other)
          Connect one of my pins to another pin.
abstract  Relation ObservableEntity.connectFromInterfaceBlock(InterfaceBlock intfBlock, Pin other, Pin mine)
          Connect pin other of InterfaceBlock intfBlock to my pin mine.
 Relation Model.connectFromInterfaceBlock(InterfaceBlock intfBlock, Pin other, Pin mine)
          Connect pin other of InterfaceBlock intfBlock to my pin mine.
 Relation Block.connectFromInterfaceBlock(InterfaceBlock intfBlock, Pin other, Pin mine)
          Connect pin other of InterfaceBlock intfBlock to my pin mine.
abstract  Relation ObservableEntity.connectFromModel(Model<?> model, Pin other, Pin mine)
          Connect pin other of Model model to my pin mine.
 Relation Model.connectFromModel(Model<?> model, Pin other, Pin mine)
          Connect pin other of Model model to my pin mine.
 Relation InterfaceBlock.connectFromModel(Model<?> model, Pin other, Pin mine)
          Connect pin other of Model model to my pin mine.
 Relation Block.connectFromModel(Model<?> model, Pin other, Pin mine)
          Connect pin other of Model model to my pin mine.
abstract  Relation ObservableEntity.connectFromRegularBlock(Block block, Pin other, Pin mine)
          Connect pin other of regular Block block to my pin mine.
 Relation Model.connectFromRegularBlock(Block block, Pin other, Pin mine)
          Connect pin other of regular Block block to my pin mine.
 Relation Block.connectFromRegularBlock(Block block, Pin other, Pin mine)
          Connect pin other of regular Block block to my pin mine.
 Relation Pin.connectTo(Pin dst)
           
 Relation InterfaceBlock.createAdaptationRelation(Pin source, Pin target)
          Create a relation between a pin of the interface block and a pin of the internal model (or vice versa).
 Relation Model.createRelation(Pin source, Pin target)
          Connect two pins in this model.
 Relation BlockStructure.createRelation(Pin source, Pin target)
          Create a relation between two pins in the structure.
 

Methods in modhelxs.abstractsemantics that return types with arguments of type Relation
 java.util.Collection<Relation> InterfaceBlock.getAdaptation()
           
 java.util.Collection<Relation> Pin.getIncomingRelations()
           
 java.util.Collection<Relation> Pin.getOutgoingRelations()
           
 java.util.Collection<Relation> BlockStructure.getRelations()
           
 

Methods in modhelxs.abstractsemantics with parameters of type Relation
 void Pin.addIncoming(Relation r)
          Add an incoming relation to this pin.
 void Pin.addOutgoing(Relation r)
          Add an outgoing relation to this pin.
 

Uses of Relation in modhelxs.mocs.sdf
 

Constructors in modhelxs.mocs.sdf with parameters of type Relation
SDFMoC.RelationState(Relation r)
           
 

Uses of Relation in modhelxs.mocs.tfsm
 

Methods in modhelxs.mocs.tfsm that return Relation
 Relation TFSMMoC.getFiringTransition(BlockStructure s)
           
 Relation FSMState.transitionTo(FSMState to, java.lang.String guard, java.lang.String action)
           
 

Uses of Relation in modhelxs.util
 

Methods in modhelxs.util with parameters of type Relation
 boolean RelationFilter.accept(Relation r)
          Tell if relation r should be kept.