Package org.graffiti.plugins.ios.importers.graphml.parser

This package provides the parsing facilities for reading in files in the graphML format.

The parser is a validating SAX parser that uses the JAXP API. It consists of multiple filters handling different aspects.

  • Class Summary
    Class Description
    Base64
    Encodes and decodes to and from Base64 notation.
    Base64.InputStream
    A Base64.InputStream will read data from another InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
    Base64.OutputStream
    A Base64.OutputStream will write data to another OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
    GraphMLEntityResolver
    Class GraphMLEntityResolver implements the EntityResolver interface to resolve external entities.
    GraphMLFilter
    Class GraphMLFilter processes the SAX events generated by the parser and builds the graph according to the events.
    GraphMLParser
    Class GraphMLParser is responsible for setting up the XML parsing environment.