Uses of Class
groovy.util.slurpersupport.GPathResult

Packages that use GPathResult
groovy.util Various Groovy utilities for working with nodes, builders, logging, JUnit test cases, text expressions, Ant tasks or JMX MBeans. 
groovy.util.slurpersupport   
 

Uses of GPathResult in groovy.util
 

Methods in groovy.util that return GPathResult
 GPathResult XmlSlurper.getDocument()
           
 GPathResult XmlSlurper.parse(File file)
          Parses the content of the given file as XML turning it into a GPathResult object
 GPathResult XmlSlurper.parse(InputSource input)
          Parse the content of the specified input source into a GPathResult object
 GPathResult XmlSlurper.parse(InputStream input)
          Parse the content of the specified input stream into an GPathResult Object.
 GPathResult XmlSlurper.parse(Reader in)
          Parse the content of the specified reader into a GPathResult Object.
 GPathResult XmlSlurper.parse(String uri)
          Parse the content of the specified URI into a GPathResult Object
 GPathResult XmlSlurper.parseText(String text)
          A helper method to parse the given text as XML
 

Uses of GPathResult in groovy.util.slurpersupport
 

Subclasses of GPathResult in groovy.util.slurpersupport
 class FilteredAttributes
           
 class FilteredNodeChildren
           
 class NoChildren
           
 class NodeChild
           
 

Fields in groovy.util.slurpersupport declared as GPathResult
protected  GPathResult GPathResult.parent
           
 

Methods in groovy.util.slurpersupport that return GPathResult
 GPathResult GPathResult.children()
           
 GPathResult GPathResult.declareNamespace(Map newNamespaceMapping)
           
abstract  GPathResult GPathResult.find(Closure closure)
           
 GPathResult NoChildren.find(Closure closure)
           
 GPathResult NodeChild.find(Closure closure)
           
abstract  GPathResult GPathResult.findAll(Closure closure)
           
 GPathResult NoChildren.findAll(Closure closure)
           
 GPathResult NodeChild.findAll(Closure closure)
           
 GPathResult GPathResult.parent()
           
abstract  GPathResult GPathResult.parents()
           
 GPathResult NoChildren.parents()
           
 GPathResult NodeChild.parents()
           
 

Constructors in groovy.util.slurpersupport with parameters of type GPathResult
FilteredAttributes(GPathResult parent, Closure closure, Map namespaceTagHints)
           
FilteredNodeChildren(GPathResult parent, Closure closure, Map namespaceTagHints)
           
GPathResult(GPathResult parent, String name, String namespacePrefix, Map namespaceTagHints)
           
NoChildren(GPathResult parent, String name, Map namespaceTagHints)
           
NodeChild(Node node, GPathResult parent, Map namespaceTagHints)
           
NodeChild(Node node, GPathResult parent, String namespacePrefix, Map namespaceTagHints)
           
 



Copyright © 2003-2010 The Codehaus. All Rights Reserved.