Uses of Interface
org.extex.ocpware.compiler.sexpression.Expr

Packages that use Expr
org.extex.ocpware.compiler.arith This package contains arithmetic expression classes for compiling OCPs. 
org.extex.ocpware.compiler.expression   
org.extex.ocpware.compiler.left This package contains the left term classes for compiling OCPs. 
org.extex.ocpware.compiler.sexpression This package contains some string expression classes for compiling OCPs. 
 

Uses of Expr in org.extex.ocpware.compiler.arith
 

Classes in org.extex.ocpware.compiler.arith that implement Expr
 class Arith
          This class represents an arithmetic expression as a whole.
 class Char
          This class represents the reference to a character in the matched sequence.
 class Constant
          This class provides a constant arithmetic expression.
 class LastChar
          This class represents an arithmetic expression which references a character in the prefix relative to last.
 

Uses of Expr in org.extex.ocpware.compiler.expression
 

Methods in org.extex.ocpware.compiler.expression that return types with arguments of type Expr
 java.util.List<Expr> Expression.getPushBack()
          Getter for pushBack.
 

Method parameters in org.extex.ocpware.compiler.expression with type arguments of type Expr
 void Expression.setPushBack(java.util.List<Expr> pushBack)
          Setter for pushBack.
 

Constructor parameters in org.extex.ocpware.compiler.expression with type arguments of type Expr
Right(java.util.List<Expr> right)
          Creates a new object.
 

Uses of Expr in org.extex.ocpware.compiler.left
 

Classes in org.extex.ocpware.compiler.left that implement Expr
 class StringItem
          This class represents a string of characters as left item.
 

Uses of Expr in org.extex.ocpware.compiler.sexpression
 

Classes in org.extex.ocpware.compiler.sexpression that implement Expr
 class Some
          This class represents a prefix which is trimmed on both sides.
 

Methods in org.extex.ocpware.compiler.sexpression that return types with arguments of type Expr
static java.util.List<Expr> ExprListParser.parse(ParserStream s)
          Parse a list of expressions.