Methods Summary |
---|
public boolean | canRemoveAttribute(java.lang.String attrname)Verifies if an attribute by the given name can be removed.
|
public boolean | canRemoveAttributeNS(java.lang.String attrname, java.lang.String namespaceURI)Verifies if an attribute by the given local name and namespace can be
removed.
|
public boolean | canRemoveAttributeNode(org.w3c.dom.Node attrNode)Determines if an attribute node can be removed.
|
public boolean | canSetAttribute(java.lang.String attrname, java.lang.String attrval)Determines if the value for specified attribute can be set.
|
public boolean | canSetAttributeNS(java.lang.String name, java.lang.String attrval, java.lang.String namespaceURI)Determines if the attribute with given namespace and qualified name can
be created if not already present in the attribute list of the
element. If the attribute with same qualified name and namespaceURI
is already present in the elements attribute list it tests for the
value of the attribute and its prefix to the new value. See DOM core
setAttributeNS .
|
public boolean | canSetAttributeNode(org.w3c.dom.Attr attrNode)Determines if an attribute node can be added with respect to the
validity check level.This is an attribute node, there is no need for
canSetAttributreNodeNS!
|
public short | contentType()Determines element content type.
|
public org.w3c.dom.NodeList | getAttributeList()Returns an NodeList containing all the possible
Attr s that can appear with this type of element.
|
public org.w3c.dom.NodeList | getChildElements()Returns an NodeList containing the possible
Element names that can appear as children of this type
of element.
|
public org.w3c.dom.NodeList | getDefinedElementTypes()The list of qualified element names defined in the abstract schema.
|
public org.w3c.dom.NodeList | getParentElements()Returns an NodeList containing the possible
Element names that can appear as a parent of this type
of element.
|
public boolean | isElementDefined(java.lang.String elemTypeName)Determines if this element is defined in the currently active AS.
|
public boolean | isElementDefinedNS(java.lang.String elemTypeName, java.lang.String namespaceURI, java.lang.String name)Determines if this element in this namespace is defined in the
currently active AS.
|