Package org.apache.jmeter.monitor.parser
Class MonitorHandler
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.apache.jmeter.monitor.parser.MonitorHandler
-
- All Implemented Interfaces:
ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
public class MonitorHandler extends DefaultHandler
-
-
Constructor Summary
Constructors Constructor Description MonitorHandler(ObjectFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] 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
startDocument()
void
startElement(String uri, String localName, String qName, Attributes attributes)
Receive notification of the start of an element.-
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Constructor Detail
-
MonitorHandler
public MonitorHandler(ObjectFactory factory)
- Parameters:
factory
-ObjectFactory
to use
-
-
Method Detail
-
startDocument
public void startDocument() throws SAXException
- Specified by:
startDocument
in interfaceContentHandler
- Overrides:
startDocument
in classDefaultHandler
- Throws:
SAXException
-
endDocument
public void endDocument() throws SAXException
- Specified by:
endDocument
in interfaceContentHandler
- Overrides:
endDocument
in classDefaultHandler
- 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).
- Specified by:
startElement
in interfaceContentHandler
- Overrides:
startElement
in classDefaultHandler
- Parameters:
uri
- The namespace uri, or the empty string, if no namespace is availablelocalName
- The element type name.qName
- The qualified name, or the empty string (must not benull
)attributes
- The specified or defaulted attributes.- Throws:
SAXException
- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
-
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).
- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
- Parameters:
uri
- the namespace uri, or the empty string, if no namespace is availablelocalName
- The element type name.qName
- The specified or defaulted attributes.- Throws:
SAXException
- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
-
characters
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).
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
- Parameters:
ch
- The characters.start
- The start position in the character array.length
- The number of characters to use from the character array.- Throws:
SAXException
- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.characters(char[], int, int)
-
parseLong
public long parseLong(String data)
Convienance method for parsing long. If the string was not a number, the method returns zero.- Parameters:
data
- string representation of aLong
- Returns:
- the value as a long
-
parseInt
public int parseInt(String data)
Convienance method for parsing integers.- Parameters:
data
- string representation of anInteger
- Returns:
- the value as an integer
-
getContents
public Status getContents()
method returns the status object.- Returns:
- the status
-
-