Uses of Class
gate.jape.LeftHandSide

Packages that use LeftHandSide
gate.jape   
gate.jape.parser   
 

Uses of LeftHandSide in gate.jape
 

Fields in gate.jape declared as LeftHandSide
private  LeftHandSide RightHandSide.lhs
          The LHS of our rule, where we get bindings from.
private  LeftHandSide Rule.lhs
          The LHS or pattern of the rule.
 

Methods in gate.jape that return LeftHandSide
 LeftHandSide Rule.getLHS()
           
 

Constructors in gate.jape with parameters of type LeftHandSide
RightHandSide(String transducerName, String ruleName, LeftHandSide lhs)
          Construction from the transducer name, rule name and the LHS.
Rule(String name, int position, int priority, LeftHandSide lhs, RightHandSide rhs)
          Construction
 

Uses of LeftHandSide in gate.jape.parser
 

Methods in gate.jape.parser that return LeftHandSide
 LeftHandSide ParseCpsl.LeftHandSide()
           
 

Methods in gate.jape.parser with parameters of type LeftHandSide
 void ParseCpsl.ConstraintGroup(LeftHandSide lhs, ConstraintGroup cg)
           
 PatternElement ParseCpsl.PatternElement(LeftHandSide lhs)
           
 ComplexPatternElement ParseCpsl.ComplexPatternElement(LeftHandSide lhs)
           
 RightHandSide ParseCpsl.RightHandSide(String phaseName, String ruleName, LeftHandSide lhs)