XMLPullParser
  
  
package org.cyberneko.pull;
public interface XMLPullParser 
  extends XMLEventIterator, XMLComponentManager {
    public void setInputSource(XMLInputSource inputSource)
      throws XMLConfigurationException, IOException;
    public void cleanup();
    
    public void setErrorHandler(XMLErrorHandler errorHandler);
    public XMLErrorHandler getErrorHandler();
    public void setEntityResolver(XMLEntityResolver entityResolver);
    public XMLEntityResolver getEntityResolver();
    public void setLocale(Locale locale) throws XNIException;
    public Locale getLocale();
    public boolean getFeature(String featureId)
      throws XMLConfigurationException;
    public void setFeature(String featureId, boolean state)
      throws XMLConfigurationException;
    public void setProperty(String propertyId, Object value)
      throws XMLConfigurationException;
    public Object getProperty(String propertyId)
      throws XMLConfigurationException;
    public XMLEvent nextEvent() throws XNIException, IOException;
    
}