Groovy 2.2.0

groovy.xml.dom
[Java] Class DOMCategory

java.lang.Object
  groovy.xml.dom.DOMCategory

public class DOMCategory
extends Object

Category class which adds GPath style operations to Java's DOM classes.

Authors:
sam
paulk


Method Summary
static Element appendNode(Element self, Object name)

static Element appendNode(Element self, Object name, Map attributes)

static Element appendNode(Element self, Object name, String value)

static Element appendNode(Element self, Object name, Map attributes, String value)

static NamedNodeMap attributes(Element element)

static NodeList breadthFirst(Element self)

static NodeList children(Element self)

static NodeList depthFirst(Element self)

static Object get(Element element, String elementName)

static Object get(NodeList nodeList, String elementName)

static Object get(NamedNodeMap nodeMap, String elementName)

static Node getAt(Node o, int i)

static Node getAt(DOMCategory.NodeListsHolder o, int i)

static Node getAt(DOMCategory.NodesHolder o, int i)

static NodeList getAt(Node o, IntRange r)

static NodeList getAt(DOMCategory.NodeListsHolder o, IntRange r)

static NodeList getAt(DOMCategory.NodesHolder o, IntRange r)

static boolean isEmpty(NodeList self)

static List list(NodeList self)

static String name(Node node)

static Node parent(Node node)

static void plus(Element self, Closure c)

static void plus(NodeList self, Closure c)

static void putAt(Element self, String property, Object value)

static Node replaceNode(DOMCategory.NodesHolder self, Closure c)

static Node replaceNode(Node self, Closure c)

static void setValue(Element self, String value)

static int size(NamedNodeMap namedNodeMap)

static int size(NodeList self)

static String text(Node node)

static String text(NodeList nodeList)

static String toString(Object o)

static Object xpath(Node self, String expression, QName returnType)

static String xpath(Node self, String expression)

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Method Detail

appendNode

public static Element appendNode(Element self, Object name)


appendNode

public static Element appendNode(Element self, Object name, Map attributes)


appendNode

public static Element appendNode(Element self, Object name, String value)


appendNode

public static Element appendNode(Element self, Object name, Map attributes, String value)


attributes

public static NamedNodeMap attributes(Element element)


breadthFirst

public static NodeList breadthFirst(Element self)


children

public static NodeList children(Element self)


depthFirst

public static NodeList depthFirst(Element self)


get

public static Object get(Element element, String elementName)


get

public static Object get(NodeList nodeList, String elementName)


get

public static Object get(NamedNodeMap nodeMap, String elementName)


getAt

public static Node getAt(Node o, int i)


getAt

public static Node getAt(DOMCategory.NodeListsHolder o, int i)


getAt

public static Node getAt(DOMCategory.NodesHolder o, int i)


getAt

public static NodeList getAt(Node o, IntRange r)


getAt

public static NodeList getAt(DOMCategory.NodeListsHolder o, IntRange r)


getAt

public static NodeList getAt(DOMCategory.NodesHolder o, IntRange r)


isEmpty

public static boolean isEmpty(NodeList self)


list

public static List list(NodeList self)


name

public static String name(Node node)


parent

public static Node parent(Node node)


plus

public static void plus(Element self, Closure c)


plus

public static void plus(NodeList self, Closure c)


putAt

public static void putAt(Element self, String property, Object value)


replaceNode

public static Node replaceNode(DOMCategory.NodesHolder self, Closure c)


replaceNode

public static Node replaceNode(Node self, Closure c)


setValue

public static void setValue(Element self, String value)


size

public static int size(NamedNodeMap namedNodeMap)


size

public static int size(NodeList self)


text

public static String text(Node node)


text

public static String text(NodeList nodeList)


toString

public static String toString(Object o)


xpath

public static Object xpath(Node self, String expression, QName returnType)


xpath

public static String xpath(Node self, String expression)


 

Copyright © 2003-2013 The Codehaus. All rights reserved.