|
diva.util
Interface ModelParser
- All Known Implementing Classes:
- SceneParser, SketchParser, TrainingParser, EventParser
- public interface ModelParser
ModelParser is an interface that should be extended by application
specified model parsers. It's job is to parse data into an
application specific data structure.
|
Method Summary |
java.lang.Object |
parse(java.io.Reader reader)
Parse the data in the given charater stream into a data
structure and return the data structure. |
parse
public java.lang.Object parse(java.io.Reader reader)
throws java.lang.Exception
- Parse the data in the given charater stream into a data
structure and return the data structure.
|