Package jjparse

Class Parsing<I>

java.lang.Object
jjparse.Parsing<I>
Type Parameters:
I - The input type or, more specifically, the type of a single element in the underlying input stream.
Direct Known Subclasses:
StringParsing

public abstract class Parsing<I> extends Object
An abstract class that provides all basic parsing capabilities.

In order to implement a parser, one must extend this class and specify the corresponding input type. The subclass then has access to the Parsing.Parser class and the Parsing.Result class, which are specialized for the respective input type.
Author:
Björn Lötters
See Also: