org.apache.jmeter.monitor.parser
Class MonitorHandler
DefaultHandler
org.apache.jmeter.monitor.parser.MonitorHandler
public class MonitorHandler
extends DefaultHandler
void | characters(ch[] , int start, int length) - Receive notification of character data inside an element.
|
void | endDocument()
|
void | endElement(String uri, String localName, String qName) - Receive notification of the end of an element.
|
Status | getContents() - method returns the status object.
|
int | parseInt(String data) - Convienance method for parsing integers.
|
long | parseLong(String data) - Convienance method for parsing long.
|
void | setObjectFactory(ObjectFactory factory) - Set the ObjectFactory used to create new
|
void | startDocument()
|
void | startElement(String uri, String localName, String qName, Attributes attributes) - Receive notification of the start of an element.
|
MonitorHandler
public MonitorHandler()
characters
public void characters(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).
start
- The start position in the character array.length
- The number of characters to use from the character array.
endDocument
public void endDocument()
throws SAXException
endElement
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).
uri
- localName
- The element type name.qName
- The specified or defaulted attributes.
getContents
public Status getContents()
method returns the status object.
parseInt
public int parseInt(String data)
Convienance method for parsing integers.
parseLong
public long parseLong(String data)
Convienance method for parsing long. If the string was not a number, the
method returns zero.
setObjectFactory
public void setObjectFactory(ObjectFactory factory)
Set the ObjectFactory used to create new
startDocument
public void startDocument()
throws SAXException
startElement
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).
uri
- localName
- The element type name.qName
- attributes
- The specified or defaulted attributes.
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.