com.maryanovsky.gwtutils.client.net
Interface XmlParser<T>


public interface XmlParser<T>

An interface for classes which can parse XML documents, converting them into an object.

Author:
Maryanovsky Alexander

Method Summary
 T parse(Document document)
          Parses the specified XML document, returning the resulting object.
 

Method Detail

parse

T parse(Document document)
        throws ParseException
Parses the specified XML document, returning the resulting object. Throws a ParseException if unable to parse.

Throws:
ParseException