Uses of Class
gate.jape.RightHandSide

Packages that use RightHandSide
gate.fsm   
gate.jape   
gate.jape.parser   
 

Uses of RightHandSide in gate.fsm
 

Fields in gate.fsm declared as RightHandSide
protected  RightHandSide State.action
          The right hand side associated to the rule for which this state recognizes the lhs.
 

Methods in gate.fsm that return RightHandSide
 RightHandSide State.getAction()
          Gets the action associated to this state.
 

Methods in gate.fsm with parameters of type RightHandSide
protected  void State.setAction(RightHandSide rhs)
          Sets the action associated to this FINAL state.
 

Uses of RightHandSide in gate.jape
 

Fields in gate.jape declared as RightHandSide
private  RightHandSide Rule.rhs
          The RHS or action of the rule.
 

Methods in gate.jape that return RightHandSide
 RightHandSide Rule.getRHS()
           
 

Constructors in gate.jape with parameters of type RightHandSide
Rule(String name, int position, int priority, LeftHandSide lhs, RightHandSide rhs)
          Construction
 

Uses of RightHandSide in gate.jape.parser
 

Methods in gate.jape.parser that return RightHandSide
 RightHandSide ParseCpsl.RightHandSide(String phaseName, String ruleName, LeftHandSide lhs)