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) throws SAXException
 {
  return null;
 }
 
 public void notationDecl(String, String, String) throws SAXException
 {
 }
 
 public void unparsedEntityDecl(String, String, String, String) throws SAXException
 {
 }
 
 public void setDocumentLocator(Locator)
 {
 }
 
 public void startDocument() throws SAXException
 {
 }
 
 public void endDocument() throws SAXException
 {
 }
 
 public void startPrefixMapping(String, String) throws SAXException
 {
 }
 
 public void endPrefixMapping(String) throws SAXException
 {
 }
 
 public void startElement(String, String, String, Attributes) throws SAXException
 {
 }
 
 public void endElement(String, String, String) throws SAXException
 {
 }
 
 public void characters(char[], int, int) throws SAXException
 {
 }
 
 public void ignorableWhitespace(char[], int, int) throws SAXException
 {
 }
 
 public void processingInstruction(String, String) throws SAXException
 {
 }
 
 public void skippedEntity(String) throws SAXException
 {
 }
 
 public void warning(SAXParseException) throws SAXException
 {
 }
 
 public void error(SAXParseException) throws SAXException
 {
 }
 
 public void fatalError(SAXParseException) throws SAXException
 {
 }
 
}