My class extends DefaultHandler. It overrided 3 methods startDocument, EndDocument, EndElement successfully, but when i override StartElement, Eclipse show this error
The method startElement(String, String, String, Attributes) of type SubscriptionHandler must override a superclass method
public void startElement (String uri, String localName, String qName, Attributes atts) throws SAXException
{
//code
}
Please explain this for me. Thanks so much.