Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.media.mn8.servlet
Class mn8RequestMapper.MapInfoParser  view mn8RequestMapper.MapInfoParser download mn8RequestMapper.MapInfoParser.java

java.lang.Object
  extended byorg.xml.sax.helpers.DefaultHandler
      extended byorg.media.mn8.servlet.mn8RequestMapper.MapInfoParser
All Implemented Interfaces:
org.xml.sax.ContentHandler, org.xml.sax.DTDHandler, org.xml.sax.EntityResolver, org.xml.sax.ErrorHandler
Enclosing class:
mn8RequestMapper

class mn8RequestMapper.MapInfoParser
extends org.xml.sax.helpers.DefaultHandler


Field Summary
private  java.lang.String _conceptName
           
private  org.media.mn8.concepts.SeriesConcept _conceptParams
           
private  boolean _isParam
           
private  boolean _isPath
           
private  java.lang.StringBuffer _value
           
 java.util.Vector conceptName
           
 java.util.Vector conceptParams
           
 java.util.Vector pathInfo
           
 
Constructor Summary
mn8RequestMapper.MapInfoParser(java.io.File mapInfoFile)
           
 
Method Summary
 void characters(char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void endElement(java.lang.String uri, java.lang.String name, java.lang.String qname)
          Receive notification of the end of an element.
 void error(org.xml.sax.SAXParseException spe)
          Receive notification of a recoverable parser error.
 void startElement(java.lang.String uri, java.lang.String qname, java.lang.String name, org.xml.sax.Attributes attr)
          Receive notification of the start of an element.
 
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

pathInfo

public java.util.Vector pathInfo

conceptName

public java.util.Vector conceptName

conceptParams

public java.util.Vector conceptParams

_conceptName

private java.lang.String _conceptName

_conceptParams

private org.media.mn8.concepts.SeriesConcept _conceptParams

_isPath

private boolean _isPath

_isParam

private boolean _isParam

_value

private java.lang.StringBuffer _value
Constructor Detail

mn8RequestMapper.MapInfoParser

public mn8RequestMapper.MapInfoParser(java.io.File mapInfoFile)
Method Detail

startElement

public void startElement(java.lang.String uri,
                         java.lang.String qname,
                         java.lang.String name,
                         org.xml.sax.Attributes attr)
                  throws org.xml.sax.SAXException
Description copied from class: org.xml.sax.helpers.DefaultHandler
Receive notification of the start of an element.

By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).


characters

public void characters(char[] ch,
                       int start,
                       int length)
                throws org.xml.sax.SAXException
Description copied from class: org.xml.sax.helpers.DefaultHandler
Receive notification of character data inside an element.

By default, do nothing. Application writers may override this method to take specific actions for each chunk of character data (such as adding the data to a node or buffer, or printing it to a file).


endElement

public void endElement(java.lang.String uri,
                       java.lang.String name,
                       java.lang.String qname)
                throws org.xml.sax.SAXException
Description copied from class: org.xml.sax.helpers.DefaultHandler
Receive notification of the end of an element.

By default, do nothing. Application writers may override this method in a subclass to take specific actions at the end of each element (such as finalising a tree node or writing output to a file).


error

public void error(org.xml.sax.SAXParseException spe)
           throws org.xml.sax.SAXParseException
Description copied from class: org.xml.sax.helpers.DefaultHandler
Receive notification of a recoverable parser error.

The default implementation does nothing. Application writers may override this method in a subclass to take specific actions for each error, such as inserting the message in a log file or printing it to the console.