Android
android.sax
public class

android.sax.Element

java.lang.Object
android.sax.Element

An XML element. Provides access to child elements and hooks to listen for events related to this element.

Known Direct Subclasses

See Also

Summary

Public Methods

          Element  getChild(String uri, String localName)
Gets the child element with the given name.
          Element  getChild(String localName)
Gets the child element with the given name.
          Element  requireChild(String localName)
Gets the child element with the given name.
          Element  requireChild(String uri, String localName)
Gets the child element with the given name.
          void  setElementListener(ElementListener elementListener)
Sets start and end element listeners at the same time.
          void  setEndElementListener(EndElementListener endElementListener)
Sets a listener for the end of this element.
          void  setEndTextElementListener(EndTextElementListener endTextElementListener)
Sets a listener for the end of this text element.
          void  setStartElementListener(StartElementListener startElementListener)
Sets a listener for the start of this element.
          void  setTextElementListener(TextElementListener elementListener)
Sets start and end text element listeners at the same time.
          String  toString()
Returns a string containing a concise, human-readable description of the receiver.
Methods inherited from class java.lang.Object

Details

Public Methods

public Element getChild(String uri, String localName)

Gets the child element with the given name.

public Element getChild(String localName)

Gets the child element with the given name. Uses an empty string as the namespace.

public Element requireChild(String localName)

Gets the child element with the given name. Uses an empty string as the namespace. We will throw a SAXException at parsing time if the specified child is missing. This helps you ensure that your listeners are called.

public Element requireChild(String uri, String localName)

Gets the child element with the given name. We will throw a SAXException at parsing time if the specified child is missing. This helps you ensure that your listeners are called.

public void setElementListener(ElementListener elementListener)

Sets start and end element listeners at the same time.

public void setEndElementListener(EndElementListener endElementListener)

Sets a listener for the end of this element.

public void setEndTextElementListener(EndTextElementListener endTextElementListener)

Sets a listener for the end of this text element.

public void setStartElementListener(StartElementListener startElementListener)

Sets a listener for the start of this element.

public void setTextElementListener(TextElementListener elementListener)

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

public String toString()

Returns a string containing a concise, human-readable description of the receiver.

Returns

  • String a printable representation for the receiver.
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:48