| java.lang.Object com.caucho.xml.QAbstractNode com.caucho.xml.QNode com.caucho.xml.QAttributedNode
All known Subclasses: com.caucho.xml.QElement,
QAttributedNode | abstract public class QAttributedNode extends QNode (Code) | | |
Inner Class :static class QAttributeMap implements NamedNodeMap | |
Method Summary | |
public String | getAttribute(String name) Returns the named attribute. | public String | getAttributeNS(String namespaceURI, String local) Returns the attribute specified by a namespace. | public Attr | getAttributeNode(String name) Returns the attribute specified by the name. | public Attr | getAttributeNodeNS(String uri, String local) | public NamedNodeMap | getAttributes() Returns a map of the attributes. | public Attr | getFirstAttribute() Returns the first attribute in the attribute list. | public boolean | hasAttribute(String name) | public boolean | hasAttributeNS(String uri, String local) | public boolean | hasAttributes() Returns true if the element has attributes. | public void | removeAttribute(String name) Removes the named attribute. | public void | removeAttributeNS(String uri, String name) Removes the attribute specified by the localname and namespace. | public Attr | removeAttributeNode(Attr attr) Removes the matching attribute. | public Attr | removeAttributeNodeNS(Attr attr) Removes the matching attribute. | public void | setAttribute(String name, String value) | void | setAttribute(QName name, String value) | public void | setAttributeNS(String uri, String local, String value) | public Attr | setAttributeNode(Attr attr) Sets an attribute, specified by the object. | public Attr | setAttributeNodeNS(Attr attr) | public void | setIdAttribute(String name, boolean isId) Sets an attribute, specified by the object. | public void | setIdAttributeNS(String namespaceURI, String localName, boolean isId) Sets an attribute, specified by the object. | public void | setIdAttributeNode(Attr attr, boolean isId) Sets an attribute, specified by the object. | QAttr | unlink(String name) Unlinks an attribute, returning it. | public QAttr | unlink(String uri, String local) Removes the attribute named by the URI and local name. |
getAttributeNS | public String getAttributeNS(String namespaceURI, String local)(Code) | | Returns the attribute specified by a namespace.
|
getAttributeNode | public Attr getAttributeNode(String name)(Code) | | Returns the attribute specified by the name.
|
getFirstAttribute | public Attr getFirstAttribute()(Code) | | Returns the first attribute in the attribute list.
|
hasAttributes | public boolean hasAttributes()(Code) | | Returns true if the element has attributes.
|
removeAttribute | public void removeAttribute(String name)(Code) | | Removes the named attribute.
|
removeAttributeNS | public void removeAttributeNS(String uri, String name)(Code) | | Removes the attribute specified by the localname and namespace.
|
removeAttributeNode | public Attr removeAttributeNode(Attr attr)(Code) | | Removes the matching attribute.
|
removeAttributeNodeNS | public Attr removeAttributeNodeNS(Attr attr)(Code) | | Removes the matching attribute.
|
setIdAttribute | public void setIdAttribute(String name, boolean isId) throws DOMException(Code) | | Sets an attribute, specified by the object.
|
setIdAttributeNS | public void setIdAttributeNS(String namespaceURI, String localName, boolean isId) throws DOMException(Code) | | Sets an attribute, specified by the object.
|
setIdAttributeNode | public void setIdAttributeNode(Attr attr, boolean isId) throws DOMException(Code) | | Sets an attribute, specified by the object.
|
Methods inherited from com.caucho.xml.QAbstractNode | public Node appendChild(Node newNode) throws DOMException(Code)(Java Doc) public static String baseURI(Node node)(Code)(Java Doc) public boolean checkValid() throws Exception(Code)(Java Doc) public Node cloneNode(boolean deep)(Code)(Java Doc) public short compareDocumentPosition(Node node)(Code)(Java Doc) public short compareTreePosition(Node other)(Code)(Java Doc) public boolean equals(Node arg, boolean deep)(Code)(Java Doc) public NamedNodeMap getAttributes()(Code)(Java Doc) public String getBaseURI()(Code)(Java Doc) public String getCanonicalName()(Code)(Java Doc) public NodeList getChildNodes()(Code)(Java Doc) public int getColumn()(Code)(Java Doc) public ArrayList<Depend> getDependencyList()(Code)(Java Doc) public Object getFeature(String feature, String version)(Code)(Java Doc) public String getFilename()(Code)(Java Doc) public Node getFirstChild()(Code)(Java Doc) public Node getInterface(String feature)(Code)(Java Doc) public Node getLastChild()(Code)(Java Doc) public int getLine()(Code)(Java Doc) public String getLocalName()(Code)(Java Doc) public String getNamespaceURI()(Code)(Java Doc) public QAbstractNode getNextContent()(Code)(Java Doc) public QAbstractNode getNextPreorder()(Code)(Java Doc) public Node getNextSibling()(Code)(Java Doc) public String getNodeValue()(Code)(Java Doc) public Document getOwnerDocument()(Code)(Java Doc) public Node getParentNode()(Code)(Java Doc) public String getPrefix()(Code)(Java Doc) public QAbstractNode getPreviousContent()(Code)(Java Doc) public Node getPreviousSibling()(Code)(Java Doc) public QName getQName()(Code)(Java Doc) public String getTextContent() throws DOMException(Code)(Java Doc) public String getTextValue()(Code)(Java Doc) public Object getUserData(String data)(Code)(Java Doc) public boolean hasAttributes()(Code)(Java Doc) public boolean hasChildNodes()(Code)(Java Doc) public boolean hasContent()(Code)(Java Doc) public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc) public boolean isDefaultNamespace(String namespaceURI)(Code)(Java Doc) public boolean isEqualNode(Node arg)(Code)(Java Doc) boolean isNameValid(String name)(Code)(Java Doc) public boolean isSameNode(Node other)(Code)(Java Doc) public boolean isSupported(String feature, String version)(Code)(Java Doc) public String lookupNamespacePrefix(String namespaceURI, boolean useDefault)(Code)(Java Doc) public String lookupNamespaceURI(String prefix)(Code)(Java Doc) public String lookupPrefix(String feature)(Code)(Java Doc) public void normalize()(Code)(Java Doc) void print(XmlPrinter out) throws IOException(Code)(Java Doc) public void print(WriteStream out) throws IOException(Code)(Java Doc) public void printHtml(WriteStream out) throws IOException(Code)(Java Doc) public void printPretty(WriteStream out) throws IOException(Code)(Java Doc) void remove()(Code)(Java Doc) public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc) public Node replaceChild(Node newChild, Node refChild) throws DOMException(Code)(Java Doc) public void setFeature(String feature, boolean value)(Code)(Java Doc) public void setLocation(String systemId, String filename, int line, int column)(Code)(Java Doc) public void setNodeValue(String value)(Code)(Java Doc) public void setPrefix(String prefix)(Code)(Java Doc) public void setTextContent(String textContent) throws DOMException(Code)(Java Doc) public Object setUserData(String key, Object value, UserDataHandler userData)(Code)(Java Doc) public boolean supports(String feature, String version)(Code)(Java Doc)
|
|
|