Home » jakarta-jmeter-2.3.4_src » org.apache.jmeter.monitor.parser » [javadoc | source]
org.apache.jmeter.monitor.parser
public class: MonitorHandler [javadoc | source]
java.lang.Object
   org.xml.sax.helpers.DefaultHandler
      org.apache.jmeter.monitor.parser.MonitorHandler

All Implemented Interfaces:
    ErrorHandler, EntityResolver, ContentHandler, DTDHandler

Constructor:
 public MonitorHandler() 
Method from org.apache.jmeter.monitor.parser.MonitorHandler Summary:
characters,   endDocument,   endElement,   getContents,   parseInt,   parseLong,   setObjectFactory,   startDocument,   startElement
Methods from org.xml.sax.helpers.DefaultHandler:
characters,   endDocument,   endElement,   endPrefixMapping,   error,   fatalError,   ignorableWhitespace,   notationDecl,   processingInstruction,   resolveEntity,   setDocumentLocator,   skippedEntity,   startDocument,   startElement,   startPrefixMapping,   unparsedEntityDecl,   warning
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.jmeter.monitor.parser.MonitorHandler Detail:
 public  void characters(char[] ch,
    int start,
    int length) throws SAXException 
    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).

 public  void endDocument() throws SAXException 
 public  void endElement(String uri,
    String localName,
    String qName) throws SAXException 
    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).

 public Status getContents() 
    method returns the status object.
 public int parseInt(String data) 
    Convienance method for parsing integers.
 public long parseLong(String data) 
    Convienance method for parsing long. If the string was not a number, the method returns zero.
 public  void setObjectFactory(ObjectFactory factory) 
    Set the ObjectFactory used to create new
 public  void startDocument() throws SAXException 
 public  void startElement(String uri,
    String localName,
    String qName,
    Attributes attributes) throws SAXException 
    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).