package org.xml.sax.helpers;

import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;

public class DefaultHandler
{

 public DefaultHandler()
 {
 }
 
 public InputSource resolveEntity(String string_1, String string_2) throws SAXException
 {
  return null;
 }
 
 public void notationDecl(String string_1, String string_2, String string_3) throws SAXException
 {
 }
 
 public void unparsedEntityDecl(String string_1, String string_2, String string_3, String string_4) throws SAXException
 {
 }
 
 public void setDocumentLocator(Locator locator_1)
 {
 }
 
 public void startDocument() throws SAXException
 {
 }
 
 public void endDocument() throws SAXException
 {
 }
 
 public void startPrefixMapping(String string_1, String string_2) throws SAXException
 {
 }
 
 public void endPrefixMapping(String string_1) throws SAXException
 {
 }
 
 public void startElement(String string_1, String string_2, String string_3, Attributes attributes_1) throws SAXException
 {
 }
 
 public void endElement(String string_1, String string_2, String string_3) throws SAXException
 {
 }
 
 public void characters(char[] chars_1, int int_1, int int_2) throws SAXException
 {
 }
 
 public void ignorableWhitespace(char[] chars_1, int int_1, int int_2) throws SAXException
 {
 }
 
 public void processingInstruction(String string_1, String string_2) throws SAXException
 {
 }
 
 public void skippedEntity(String string_1) throws SAXException
 {
 }
 
 public void warning(SAXParseException saxparseexception_1) throws SAXException
 {
 }
 
 public void error(SAXParseException saxparseexception_1) throws SAXException
 {
 }
 
 public void fatalError(SAXParseException saxparseexception_1) throws SAXException
 {
 }
 
}