xperimentalstuff.com/Technologies/JavaCC">JavaCC generated parser for
Garbage templates.
This class is automatically generated, so, it might be non-obvious to determine how to use it. To create a new parser and parse a document, do the following:
InputSource source = new InputSource(...);
Parser parser = new Parser();
Events events = parser.parse(source);
Note that instances of this class are NOT THREAD SAFE, meaning that two threads cannot concurrently parse two documents using the same instance, but at the same time, one thread can safely call the parse(...)
method several times (the parser will automatically re-initialize its state once the method is invoked).
@author
Pier Fumagalli, February 2003