Uses of Class
jpicedt.format.input.util.REParserException
-
Packages that use REParserException Package Description jpicedt.format.input jpicedt.format.input.latex Parser grammar for the LaTeX picture environment format.jpicedt.format.input.pstricks Pstricks grammar tree.jpicedt.format.input.util This package contains helper classes for building a parser based on the well-known RegExp scheme, yet with a strong object-oriented approach in mind. -
-
Uses of REParserException in jpicedt.format.input
Methods in jpicedt.format.input that throw REParserException Modifier and Type Method Description DrawingDefaultParser. parse(java.io.Reader reader)kicks off the parsing process -
Uses of REParserException in jpicedt.format.input.latex
Methods in jpicedt.format.input.latex that throw REParserException Modifier and Type Method Description voidEndPictureExpression. action(ParserEvent e)booleanPicEndExpression. interpret(Context context) -
Uses of REParserException in jpicedt.format.input.pstricks
Methods in jpicedt.format.input.pstricks that throw REParserException Modifier and Type Method Description voidEndPsPictureExpression. action(ParserEvent e)voidPSTInstanciationExpression. action(ParserEvent e)booleanPsObjectExpression. interpret(Context context)booleanPSTDotStyleExpression. interpret(Context context)booleanPSTFillStyleExpression. interpret(Context context) -
Uses of REParserException in jpicedt.format.input.util
Subclasses of REParserException in jpicedt.format.input.util Modifier and Type Class Description static classREParserException.BeginGroupMismatcha "begin group" has no matching "end group"static classREParserException.BlockMismatcha closing delimiter has no matching opening delimiter (see EnclosingExpression)static classREParserException.EndGroupMismatcha "end group" has no matching "begin group"static classREParserException.EndOfPicturethe end of the picture environment was encoutered.static classREParserException.EndOfPictureNotFoundthe end of the picture environment wasn't found in the current Reader.static classREParserException.EOFthe end of the file (or the underlying Reader) was reached abnormally, e.g.static classREParserException.IncompleteSequencesignals an incomplete SequenceExpressionstatic classREParserException.NotFoundInFilea mandatory expression wasn't foundstatic classREParserException.NumberFormataka NumberFormatExceptionstatic classREParserException.NumberSignsignals an error concerning the sign of a number (see NumericalExpression)static classREParserException.SyntaxErrora syntax error has occured ; should be used as a last resort, when no specific exception message applies.Methods in jpicedt.format.input.util that throw REParserException Modifier and Type Method Description voidAbstractRegularExpression. action(ParserEvent e)Called in the course of the interpret operation at the end of a SUCCESSFUL interpret operation.abstract booleanAbstractRegularExpression. interpret(Context c)Parses this expression, possibly using the given Context to fetch the String to interpret if this Expression is a leaf expression.booleanAlternateExpression. interpret(Context c)Calls "action" with value=Integer(index of first expression parsed with success, starting from 0).booleanEnclosingExpression. interpret(Context context)Call action() with value=enclosed stringbooleanLiteralExpression. interpret(Context c)booleanNumericalExpression. interpret(Context context)booleanOptionalExpression. interpret(Context c)booleanPicPointExpression. interpret(Context c)booleanRegExExpression. interpret(Context context)booleanRepeatExpression. interpret(Context c)booleanSequenceExpression. interpret(Context c)booleanStatementExpression. interpret(Context c)booleanWildCharExpression. interpret(Context context)booleanWordExpression. interpret(Context context)If parsing was successfull, sends a ParserEvent with value=string found (this may be an empty string)
-