interface with additional
methods for guided document editing. An object implementing this
interface must also implement NodeEditAS interface.
| Method from org.apache.xerces.dom3.as.ElementEditAS Detail: |
public boolean canRemoveAttribute(String attrname) Deprecated!
Verifies if an attribute by the given name can be removed. |
public boolean canRemoveAttributeNS(String attrname,
String namespaceURI) Deprecated!
Verifies if an attribute by the given local name and namespace can be
removed. |
public boolean canRemoveAttributeNode(Node attrNode) Deprecated!
Determines if an attribute node can be removed. |
public boolean canSetAttribute(String attrname,
String attrval) Deprecated!
Determines if the value for specified attribute can be set. |
public boolean canSetAttributeNS(String name,
String attrval,
String namespaceURI) Deprecated!
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(Attr attrNode) Deprecated!
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() Deprecated!
Determines element content type. |
public NodeList getAttributeList() Deprecated!
Returns an NodeList containing all the possible
Attrs that can appear with this type of element. |
public NodeList getChildElements() Deprecated!
Returns an NodeList containing the possible
Element names that can appear as children of this type
of element. |
public NodeList getDefinedElementTypes() Deprecated!
The list of qualified element names defined in the abstract schema. |
public NodeList getParentElements() Deprecated!
Returns an NodeList containing the possible
Element names that can appear as a parent of this type
of element. |
public boolean isElementDefined(String elemTypeName) Deprecated!
Determines if this element is defined in the currently active AS. |
public boolean isElementDefinedNS(String elemTypeName,
String namespaceURI,
String name) Deprecated!
Determines if this element in this namespace is defined in the
currently active AS. |