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

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

Subclasses of Message in se.ericsson.eto.norarc.javaframe
 class StartMessage
          This is the Message used to indicate a Start transition.
 class TimerMsg
          A class to include Timers into the JavaFrame machinery.
 

Fields in se.ericsson.eto.norarc.javaframe declared as Message
protected  Message StateMachine.currentMessage
           
 Message Message.nextMessage
           
 

Methods in se.ericsson.eto.norarc.javaframe that return Message
 Message StateMachine.getCurrentMessage()
          Get the current Message of this StateMachine.
 Message Message.duplicate()
          Duplicates the message by making a clone
protected  Message MailBox.removeFirst()
          Removes the first message of this Mailbox and returns it.
protected  Message MailBox.getFirst()
          Gets without removing the first message of this Mailbox and returns it.
 

Methods in se.ericsson.eto.norarc.javaframe with parameters of type Message
protected  void Trace.traceInput(StateMachine sm, State st, Message msg)
          Trace receiption of an input message by a StateMachine.
protected  void Trace.traceOutput(Message msg, Mediator med)
          Trace output of a message in a transaction.
protected  void Trace.traceDefaultTransition(StateMachine sm, State st, Message msg)
           
protected  void Trace.traceSave(StateMachine sm, State st, Message msg)
           
 void StateMachine.forward(Message sig)
          Forwards the received message to the messageBox of this StateMachine.
protected  void StateMachine.exec(Message sig)
          The treatment by this StateMachine of the next message from the mailbox.
 void State.output(Message sig, Mediator receiver, StateMachine curfsm)
          outputs a Message to a given (local) Mediator.
abstract  void SimpleRouterMediator.forward(Message sig)
          forward must be overridden by user application
 void RouterMediator.forward(Message sig)
          Forwards the specified signal to the Addressable object refered to by the mediatorrouter reference.
protected  void Router.execRouterTrans(Message sig)
          Normally the Router has only a single transition executed.
protected  void Router.output(Message sig, Mediator receiver)
          Outputs sig to the receiver.
protected  void Router.exec(Message sig)
          The execution utility called by the scheduling process.
 void OutputEdgeMediator.forward(Message sig)
           
 void MultiCastMediator.forward(Message sig)
          Duplicates and forwards the specified signal to all the Mediator objects refered to in the mediatorList.
 void Mediator.forward(Message sig)
          Forwards the specified signal to the Addressable object refered to by the address reference.
 void Mediator.input(Message sig)
          Used at the edge of the system to input the specified signal.
protected  void MailBox.addMessage(Message sig)
          Adds the Message sig to the end of this MailBox.
protected  void MailBox.addMessageFirst(Message sig)
          Adds the Message sig to the front of this MailBox.
protected  void MailBox.remove(Message sig)
          Removes the Message sig from this Mailbox.
protected  void CompositeState.save(Message sig, StateMachine curfsm)
          The received Message is not to be consumed and handled in this State and the Message is saved in order to be handled later in another State.
protected abstract  boolean CompositeState.execTrans(Message sig, State st, StateMachine curfsm)
          Execute transition (if defined) for Message sig and State st.
 void Addressable.forward(Message sig)
          forward the Message sig to yet other Addressable(s) and invoke its/their forward method(s)