diva.util
Interface ModelParser


public interface ModelParser

ModelParser is an interface that should be extended by application specified model parsers. Its job is to parse data into an application specific data structure.

Version:
$Id: ModelParser.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Heloise Hse

Method Summary
 java.lang.Object parse(java.io.Reader reader)
          Parse the data in the given character stream into a data structure and return the data structure.
 

Method Detail

parse

java.lang.Object parse(java.io.Reader reader)
                       throws java.lang.Exception
Parse the data in the given character stream into a data structure and return the data structure.

Throws:
java.lang.Exception