| java.lang.Object | |
| ↳ | android.sax.Element | 
   Known Direct Subclasses
  
 | 
An XML element. Provides access to child elements and hooks to listen for events related to this element.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
          Gets the child element with the given name.
          
    
         
  
   | |||||||||||
          Gets the child element with the given name.
          
    
         
  
   | |||||||||||
          Gets the child element with the given name.
          
    
         
  
   | |||||||||||
          Gets the child element with the given name.
          
    
         
  
   | |||||||||||
          Sets start and end element listeners at the same time.
          
    
         
  
   | |||||||||||
          Sets a listener for the end of this element.
          
    
         
  
   | |||||||||||
          Sets a listener for the end of this text element.
          
    
         
  
   | |||||||||||
          Sets a listener for the start of this element.
          
    
         
  
   | |||||||||||
          Sets start and end text element listeners at the same time.
          
    
         
  
   | |||||||||||
          Returns a string containing a concise, human-readable description of this
 object.
          
    
         
  
   | |||||||||||
| 
  [Expand]
   Inherited Methods  | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
   
From class
  java.lang.Object
 | |||||||||||
Gets the child element with the given name.
Gets the child element with the given name. Uses an empty string as the namespace.
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.
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.
Sets start and end element listeners at the same time.
Sets a listener for the end of this element.
Sets a listener for the end of this text element.
Sets a listener for the start of this element.
Sets start and end text element listeners at the same time.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
 toString method
 if you intend implementing your own toString method.