IElement Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Element
interface represents an element in an HTML or XML
document.
[Android.Runtime.Register("org/w3c/dom/Element", "", "Org.W3c.Dom.IElementInvoker")]
public interface IElement : IDisposable, Java.Interop.IJavaPeerable, Org.W3c.Dom.INode
[<Android.Runtime.Register("org/w3c/dom/Element", "", "Org.W3c.Dom.IElementInvoker")>]
type IElement = interface
interface INode
interface IJavaObject
interface IDisposable
interface IJavaPeerable
- Attributes
- Implements
Remarks
The Element
interface represents an element in an HTML or XML document. Elements may have attributes associated with them; since the Element
interface inherits from Node
, the generic Node
interface attribute attributes
may be used to retrieve the set of all attributes for an element. There are methods on the Element
interface to retrieve either an Attr
object by name or an attribute value by name. In XML, where an attribute value may contain entity references, an Attr
object should be retrieved to examine the possibly fairly complex sub-tree representing the attribute value. On the other hand, in HTML, where all attributes have simple string values, methods to directly access an attribute value can safely be used as a convenience. <p ><b>Note:</b> In DOM Level 2, the method normalize
is inherited from the Node
interface where it was moved.
See also the Document Object Model (DOM) Level 3 Core Specification.
Java documentation for org.w3c.dom.Element
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Fields
AttributeNode |
The node is an |
CdataSectionNode |
The node is a |
CommentNode |
The node is a |
DocumentFragmentNode |
The node is a |
DocumentNode |
The node is a |
DocumentPositionContainedBy |
The node is contained by the reference node. (Inherited from INode) |
DocumentPositionContains |
The node contains the reference node. (Inherited from INode) |
DocumentPositionDisconnected |
The two nodes are disconnected. (Inherited from INode) |
DocumentPositionFollowing |
The node follows the reference node. (Inherited from INode) |
DocumentPositionImplementationSpecific |
The determination of preceding versus following is implementation-specific. (Inherited from INode) |
DocumentPositionPreceding |
The second node precedes the reference node. (Inherited from INode) |
DocumentTypeNode |
The node is a |
ElementNode |
The node is an |
EntityNode |
The node is an |
EntityReferenceNode |
The node is an |
NotationNode |
The node is a |
ProcessingInstructionNode |
The node is a |
TextNode |
The node is a |
Properties
Attributes |
A |
BaseURI |
The absolute base URI of this node or |
ChildNodes |
A |
FirstChild |
The first child of this node. (Inherited from INode) |
Handle |
Gets the JNI value of the underlying Android object. (Inherited from IJavaObject) |
HasAttributes |
Returns whether this node (if it is an element) has any attributes. (Inherited from INode) |
HasChildNodes |
Returns whether this node has any children. (Inherited from INode) |
JniIdentityHashCode |
Returns the value of |
JniManagedPeerState |
State of the managed peer. (Inherited from IJavaPeerable) |
JniPeerMembers |
Member access and invocation support. (Inherited from IJavaPeerable) |
LastChild |
The last child of this node. (Inherited from INode) |
LocalName |
Returns the local part of the qualified name of this node. (Inherited from INode) |
NamespaceURI |
The namespace URI of this node, or |
NextSibling |
The node immediately following this node. (Inherited from INode) |
NodeName |
The name of this node, depending on its type; see the table above. (Inherited from INode) |
NodeType |
A code representing the type of the underlying object, as defined above. (Inherited from INode) |
NodeValue |
The value of this node, depending on its type; see the table above. (Inherited from INode) |
OwnerDocument |
The |
ParentNode |
The parent of this node. (Inherited from INode) |
PeerReference |
Returns a JniObjectReference of the wrapped Java object instance. (Inherited from IJavaPeerable) |
Prefix |
The namespace prefix of this node, or |
PreviousSibling |
The node immediately preceding this node. (Inherited from INode) |
SchemaTypeInfo |
The type information associated with this element. |
TagName |
The name of the element. |
TextContent |
This attribute returns the text content of this node and its descendants. (Inherited from INode) |
Methods
AppendChild(INode) |
Adds the node |
CloneNode(Boolean) |
Returns a duplicate of this node, i. (Inherited from INode) |
CompareDocumentPosition(INode) |
Compares the reference node, i. (Inherited from INode) |
Disposed() |
Called when the instance has been disposed. (Inherited from IJavaPeerable) |
DisposeUnlessReferenced() |
If there are no outstanding references to this instance, then
calls |
Finalized() |
Called when the instance has been finalized. (Inherited from IJavaPeerable) |
GetAttribute(String) |
Retrieves an attribute value by name. |
GetAttributeNode(String) |
Retrieves an attribute node by name. |
GetAttributeNodeNS(String, String) |
Retrieves an |
GetAttributeNS(String, String) |
Retrieves an attribute value by local name and namespace URI. |
GetElementsByTagName(String) |
Returns a |
GetElementsByTagNameNS(String, String) |
Returns a |
GetFeature(String, String) |
This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in . (Inherited from INode) |
GetUserData(String) |
Retrieves the object associated to a key on a this node. (Inherited from INode) |
HasAttribute(String) |
Returns |
HasAttributeNS(String, String) |
Returns |
InsertBefore(INode, INode) |
Inserts the node |
IsDefaultNamespace(String) |
This method checks if the specified |
IsEqualNode(INode) |
Tests whether two nodes are equal. (Inherited from INode) |
IsSameNode(INode) |
Returns whether this node is the same node as the given one. (Inherited from INode) |
IsSupported(String, String) |
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node, as specified in . (Inherited from INode) |
LookupNamespaceURI(String) |
Look up the namespace URI associated to the given prefix, starting from this node. (Inherited from INode) |
LookupPrefix(String) |
Look up the prefix associated to the given namespace URI, starting from this node. (Inherited from INode) |
Normalize() |
Puts all |
RemoveAttribute(String) |
Removes an attribute by name. |
RemoveAttributeNode(IAttr) |
Removes the specified attribute node. |
RemoveAttributeNS(String, String) |
Removes an attribute by local name and namespace URI. |
RemoveChild(INode) |
Removes the child node indicated by |
ReplaceChild(INode, INode) |
Replaces the child node |
SetAttribute(String, String) |
Adds a new attribute. |
SetAttributeNode(IAttr) |
Adds a new attribute node. |
SetAttributeNodeNS(IAttr) |
Adds a new attribute. |
SetAttributeNS(String, String, String) |
Adds a new attribute. |
SetIdAttribute(String, Boolean) |
If the parameter |
SetIdAttributeNode(IAttr, Boolean) |
If the parameter |
SetIdAttributeNS(String, String, Boolean) |
If the parameter |
SetJniIdentityHashCode(Int32) |
Set the value returned by |
SetJniManagedPeerState(JniManagedPeerStates) | (Inherited from IJavaPeerable) |
SetPeerReference(JniObjectReference) |
Set the value returned by |
SetUserData(String, Object, IUserDataHandler) |
Associate an object to a key on this node. (Inherited from INode) |
UnregisterFromRuntime() |
Unregister this instance so that the runtime will not return it from future Java.Interop.JniRuntime+JniValueManager.PeekValue invocations. (Inherited from IJavaPeerable) |
Extension Methods
JavaCast<TResult>(IJavaObject) |
Performs an Android runtime-checked type conversion. |
JavaCast<TResult>(IJavaObject) | |
GetJniTypeName(IJavaPeerable) |