|
Groovy 1.7.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.xml.sax.helpers.DefaultHandler
groovy.util.XmlSlurper
class XmlSlurper extends DefaultHandler
Constructor Summary | |
XmlSlurper()
|
|
XmlSlurper(boolean validating, boolean namespaceAware)
|
|
XmlSlurper(XMLReader reader)
|
|
XmlSlurper(SAXParser parser)
|
Method Summary | |
---|---|
void
|
characters(char[] ch, int start, int length)
|
void
|
endDocument()
|
void
|
endElement(String namespaceURI, String localName, String qName)
|
DTDHandler
|
getDTDHandler()
|
GPathResult
|
getDocument()
Note if one of the parse methods has been called then this returns null Note if this is called more than once all calls after the first will return null |
EntityResolver
|
getEntityResolver()
|
ErrorHandler
|
getErrorHandler()
|
boolean
|
getFeature(String uri)
|
Object
|
getProperty(String uri)
|
GPathResult
|
parse(InputSource input)
Parse the content of the specified input source into a GPathResult object |
GPathResult
|
parse(File file)
Parses the content of the given file as XML turning it into a GPathResult object |
GPathResult
|
parse(InputStream input)
Parse the content of the specified input stream into an GPathResult Object. |
GPathResult
|
parse(Reader in)
Parse the content of the specified reader into a GPathResult Object. |
GPathResult
|
parse(String uri)
Parse the content of the specified URI into a GPathResult Object |
GPathResult
|
parseText(String text)
A helper method to parse the given text as XML |
void
|
setDTDHandler(DTDHandler dtdHandler)
|
void
|
setEntityBaseUrl(URL base)
Resolves entities against using the suppied URL as the base for relative URLs The URL used to resolve relative URLs |
void
|
setEntityResolver(EntityResolver entityResolver)
|
void
|
setErrorHandler(ErrorHandler errorHandler)
|
void
|
setFeature(String uri, boolean value)
|
void
|
setKeepWhitespace(boolean keepWhitespace)
If true then whitespace before elements is kept. |
void
|
setProperty(String uri, Object value)
|
void
|
startDocument()
|
void
|
startElement(String namespaceURI, String localName, String qName, Attributes atts)
|
void
|
startPrefixMapping(String tag, String uri)
|
Methods inherited from class DefaultHandler | |
---|---|
error, warning, characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping, resolveEntity, fatalError, notationDecl, unparsedEntityDecl, wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
Methods inherited from class Object | |
---|---|
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
Constructor Detail |
---|
public XmlSlurper()
public XmlSlurper(boolean validating, boolean namespaceAware)
public XmlSlurper(XMLReader reader)
public XmlSlurper(SAXParser parser)
Method Detail |
---|
public void characters(char[] ch, int start, int length)
public void endDocument()
public void endElement(String namespaceURI, String localName, String qName)
public DTDHandler getDTDHandler()
public GPathResult getDocument()
public EntityResolver getEntityResolver()
public ErrorHandler getErrorHandler()
public boolean getFeature(String uri)
public Object getProperty(String uri)
public GPathResult parse(InputSource input)
public GPathResult parse(File file)
public GPathResult parse(InputStream input)
public GPathResult parse(Reader in)
public GPathResult parse(String uri)
public GPathResult parseText(String text)
public void setDTDHandler(DTDHandler dtdHandler)
public void setEntityBaseUrl(URL base)
public void setEntityResolver(EntityResolver entityResolver)
public void setErrorHandler(ErrorHandler errorHandler)
public void setFeature(String uri, boolean value)
public void setKeepWhitespace(boolean keepWhitespace)
public void setProperty(String uri, Object value)
public void startDocument()
public void startElement(String namespaceURI, String localName, String qName, Attributes atts)
public void startPrefixMapping(String tag, String uri)
Copyright © 2003-2009 The Codehaus. All rights reserved.