Uses of Class
org.extex.ocpware.compiler.exception.SyntaxException

Packages that use SyntaxException
org.extex.ocpware.compiler.arith This package contains arithmetic expression classes for compiling OCPs. 
org.extex.ocpware.compiler.exception This package contains exceptions 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.parser This package contains some utility classes for compiling OCPs. 
org.extex.ocpware.compiler.sexpression This package contains some string expression classes for compiling OCPs. 
 

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

Methods in org.extex.ocpware.compiler.arith that throw SyntaxException
static ArithExpr ArithExpr.parse(ParserStream s)
          Parse an arithmetic expression.
 

Uses of SyntaxException in org.extex.ocpware.compiler.exception
 

Subclasses of SyntaxException in org.extex.ocpware.compiler.exception
 class UnexpectedException
          This exception class signals the occurrence of a syntax error.
 

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

Methods in org.extex.ocpware.compiler.expression that throw SyntaxException
static Expression Expression.parse(ParserStream stream)
          Parse an expression.
static java.util.List<Expression> Expression.parseExpressions(ParserStream stream)
          Parse a list of expressions.
 

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

Methods in org.extex.ocpware.compiler.left that throw SyntaxException
static ChoiceLeft LeftParser.choiceLeft(ParserStream s)
          Parse a choice left item.
static Left LeftParser.completeLeft(ParserStream s)
          Parse a complete left item.
static java.util.List<Left> LeftParser.left(ParserStream s)
          Parse a list of left items.
static Left LeftParser.oneLeft(ParserStream s)
          Parse a left item.
 

Uses of SyntaxException in org.extex.ocpware.compiler.parser
 

Methods in org.extex.ocpware.compiler.parser that return SyntaxException
 SyntaxException ParserStream.error(int c)
          Create an exception containing the context.
 

Methods in org.extex.ocpware.compiler.parser that throw SyntaxException
 void ParserStream.expect(char ex)
          Skip to the next non-white-space character and compare it to a given one.
 void ParserStream.expect(java.lang.String ex)
          Parse an id.
 void CompilerState.parse(java.io.InputStream stream)
          Compile an input stream into an oc program.
 java.lang.String ParserStream.parseId()
          Parse an id.
 int ParserStream.parseNumber(int cc)
          Parse a number.
 

Constructors in org.extex.ocpware.compiler.parser that throw SyntaxException
CompilerState(java.io.InputStream stream)
          Creates a new object.
 

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

Methods in org.extex.ocpware.compiler.sexpression that throw SyntaxException
static java.util.List<Expr> ExprListParser.parse(ParserStream s)
          Parse a list of expressions.