Class NamedNodeMapImpl
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xs.opti.NamedNodeMapImpl
-
- All Implemented Interfaces:
NamedNodeMap
public class NamedNodeMapImpl extends Object implements NamedNodeMap
- Version:
- $Id$
- Author:
- Rahul Srivastava, Sun Microsystems Inc.
-
-
Constructor Summary
Constructors Constructor Description NamedNodeMapImpl(Attr[] attrs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLength()
Node
getNamedItem(String name)
Node
getNamedItemNS(String namespaceURI, String localName)
Node
item(int index)
Node
removeNamedItem(String name)
Node
removeNamedItemNS(String namespaceURI, String localName)
Node
setNamedItem(Node arg)
Node
setNamedItemNS(Node arg)
-
-
-
Constructor Detail
-
NamedNodeMapImpl
public NamedNodeMapImpl(Attr[] attrs)
-
-
Method Detail
-
getNamedItem
public Node getNamedItem(String name)
- Specified by:
getNamedItem
in interfaceNamedNodeMap
-
item
public Node item(int index)
- Specified by:
item
in interfaceNamedNodeMap
-
getLength
public int getLength()
- Specified by:
getLength
in interfaceNamedNodeMap
-
getNamedItemNS
public Node getNamedItemNS(String namespaceURI, String localName)
- Specified by:
getNamedItemNS
in interfaceNamedNodeMap
-
setNamedItemNS
public Node setNamedItemNS(Node arg) throws DOMException
- Specified by:
setNamedItemNS
in interfaceNamedNodeMap
- Throws:
DOMException
-
setNamedItem
public Node setNamedItem(Node arg) throws DOMException
- Specified by:
setNamedItem
in interfaceNamedNodeMap
- Throws:
DOMException
-
removeNamedItem
public Node removeNamedItem(String name) throws DOMException
- Specified by:
removeNamedItem
in interfaceNamedNodeMap
- Throws:
DOMException
-
removeNamedItemNS
public Node removeNamedItemNS(String namespaceURI, String localName) throws DOMException
- Specified by:
removeNamedItemNS
in interfaceNamedNodeMap
- Throws:
DOMException
-
-