Uses of Class
up.BinaryRule

Uses of BinaryRule in up
 

Methods in up that return BinaryRule
 BinaryRule Grammar.addBinaryRule(java.lang.String lhs, java.lang.String rhs1, java.lang.String rhs2)
          Adds the specified binary rule to this grammar.
 

Methods in up that return types with arguments of type BinaryRule
 java.util.List<BinaryRule> Grammar.getBinaryRules()
          Returns the binary rules of this grammar.
 java.util.List<BinaryRule> Grammar.getBinaryRulesWithLHS(int lhs)
          Returns the binary rules of this grammar with the specified left-hand side.
 java.util.List<BinaryRule> Grammar.getBinaryRulesWithRHS1(int rhs1)
          Returns the binary rules of this grammar with the specified right-hand side.
 java.util.List<BinaryRule> Grammar.getBinaryRulesWithRHS2(int rhs2)
          Returns the binary rules of this grammar with the specified right-hand side.
 

Constructors in up with parameters of type BinaryRule
Backpointer(BinaryRule rule, Backpointer pointerL, Backpointer pointerR)
          Create a new backpointer based on a binary rule.