Uses of Class
se.ericsson.eto.norarc.javaframe.Mediator

Uses of Mediator in se.ericsson.eto.norarc.javaframe
 

Subclasses of Mediator in se.ericsson.eto.norarc.javaframe
 class MultiCastMediator
          a MultiCastMediator is a Mediator that replicates the received Message and sends it to all its outgoing connections (which are organized in a list)
 class OutputEdgeMediator
           
 class RouterMediator
          The RouterMediator has a Router state machine associated.
 class SimpleIdRouterMediator
           
 class SimpleRouterMediator
          A SimpleRouterMediator is a superclass of Mediators that overrides the forward method and thus defines how the routing should go.
 

Fields in se.ericsson.eto.norarc.javaframe declared as Mediator
protected  Mediator OutputEdgeMediator.med
           
 

Methods in se.ericsson.eto.norarc.javaframe that return Mediator
 Mediator Router.getAddress()
          Overriding the general method by simply taking the first Mediator of the list
 

Methods in se.ericsson.eto.norarc.javaframe with parameters of type Mediator
protected  void Trace.traceOutput(Message msg, Mediator med)
          Trace output of a message in a transaction.
 void State.output(Message sig, Mediator receiver, StateMachine curfsm)
          outputs a Message to a given (local) Mediator.
protected  void Router.output(Message sig, Mediator receiver)
          Outputs sig to the receiver.
 void OutputEdgeMediator.setMediator(Mediator med)
           
 void MessageGUI.defMediator(java.lang.String name, Mediator mediator)
          Adds an alias to the mediator list, i.e. an association between the specified String (ie mediator name) and the reference to a Mediator.
abstract  void MessageGUI.generateMessage(java.lang.String msg, java.util.Vector params, Mediator med)
          This method is called when the user press the send button.
 

Constructors in se.ericsson.eto.norarc.javaframe with parameters of type Mediator
OutputEdgeMediator(java.lang.String name, Mediator med)