RootElement Class

Definition

The root XML element.

[Android.Runtime.Register("android/sax/RootElement", DoNotGenerateAcw=true)]
public class RootElement : Android.Sax.Element
[<Android.Runtime.Register("android/sax/RootElement", DoNotGenerateAcw=true)>]
type RootElement = class
    inherit Element
Inheritance
RootElement
Attributes

Remarks

The root XML element. The entry point for this API. Not safe for concurrent use.

For example, passing this XML:

&lt;feed xmlns='http://www.w3.org/2005/Atom'>
              &lt;entry>
                &lt;id>bob&lt;/id>
              &lt;/entry>
            &lt;/feed>

to this code:

static final String ATOM_NAMESPACE = "http://www.w3.org/2005/Atom";

            ...

            RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
            Element entry = root.getChild(ATOM_NAMESPACE, "entry");
            entry.getChild(ATOM_NAMESPACE, "id").setEndTextElementListener(
              new EndTextElementListener() {
                public void end(String body) {
                  System.out.println("Entry ID: " + body);
                }
              });

            XMLReader reader = ...;
            reader.setContentHandler(root.getContentHandler());
            reader.parse(...);

would output:

Entry ID: bob

Java documentation for android.sax.RootElement.

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.

Constructors

RootElement(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

RootElement(String)

Constructs a new root element with the given name.

RootElement(String, String)

Constructs a new root element with the given name.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
ContentHandler

Gets the SAX ContentHandler.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Methods

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetChild(String)

Gets the child element with the given name.

(Inherited from Element)
GetChild(String, String)

Gets the child element with the given name.

(Inherited from Element)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
RequireChild(String)

Gets the child element with the given name.

(Inherited from Element)
RequireChild(String, String)

Gets the child element with the given name.

(Inherited from Element)
SetElementListener(IElementListener)

Sets start and end element listeners at the same time.

(Inherited from Element)
SetEndElementListener(IEndElementListener)

Sets a listener for the end of this element.

(Inherited from Element)
SetEndTextElementListener(IEndTextElementListener)

Sets a listener for the end of this text element.

(Inherited from Element)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetStartElementListener(IStartElementListener)

Sets a listener for the start of this element.

(Inherited from Element)
SetTextElementListener(ITextElementListener)

Sets start and end text element listeners at the same time.

(Inherited from Element)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Events

EndElement (Inherited from Element)
EndTextElement (Inherited from Element)
StartElement (Inherited from Element)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to