public class DOMAttrMapImpl extends Object implements NamedNodeMap
Modifier | Constructor and Description |
---|---|
protected |
DOMAttrMapImpl(AttVal firstAttVal)
instantiates a new DOMAttrMapImpl for the given AttVal.
|
Modifier and Type | Method and Description |
---|---|
int |
getLength() |
Node |
getNamedItem(String name) |
Node |
getNamedItemNS(String namespaceURI,
String localName)
Not supported, returns
DOMException.NOT_SUPPORTED_ERR . |
Node |
item(int index) |
Node |
removeNamedItem(String name) |
Node |
removeNamedItemNS(String namespaceURI,
String localName)
Not supported, returns
DOMException.NOT_SUPPORTED_ERR . |
Node |
setNamedItem(Node arg) |
Node |
setNamedItemNS(Node arg)
Not supported, returns
DOMException.NOT_SUPPORTED_ERR . |
protected DOMAttrMapImpl(AttVal firstAttVal)
firstAttVal
- wrapped AttValpublic Node getNamedItem(String name)
getNamedItem
in interface NamedNodeMap
NamedNodeMap.getNamedItem(java.lang.String)
public Node item(int index)
item
in interface NamedNodeMap
NamedNodeMap.item(int)
public int getLength()
getLength
in interface NamedNodeMap
NamedNodeMap.getLength()
public Node setNamedItem(Node arg) throws DOMException
setNamedItem
in interface NamedNodeMap
DOMException
NamedNodeMap.setNamedItem(org.w3c.dom.Node)
public Node removeNamedItem(String name) throws DOMException
removeNamedItem
in interface NamedNodeMap
DOMException
NamedNodeMap.removeNamedItem(java.lang.String)
public Node getNamedItemNS(String namespaceURI, String localName)
DOMException.NOT_SUPPORTED_ERR
.getNamedItemNS
in interface NamedNodeMap
NamedNodeMap.getNamedItemNS(java.lang.String, java.lang.String)
public Node setNamedItemNS(Node arg) throws DOMException
DOMException.NOT_SUPPORTED_ERR
.setNamedItemNS
in interface NamedNodeMap
DOMException
NamedNodeMap.setNamedItemNS(org.w3c.dom.Node)
public Node removeNamedItemNS(String namespaceURI, String localName) throws DOMException
DOMException.NOT_SUPPORTED_ERR
.removeNamedItemNS
in interface NamedNodeMap
DOMException
NamedNodeMap.removeNamedItemNS(java.lang.String, java.lang.String)
Copyright © 2000–2012 sourceforge. All rights reserved.