home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / xml / sax / HandlerBase.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  1.5 KB  |  48 lines

  1. package org.xml.sax;
  2.  
  3. public class HandlerBase implements EntityResolver, DTDHandler, DocumentHandler, ErrorHandler {
  4.    public InputSource resolveEntity(String var1, String var2) throws SAXException {
  5.       return null;
  6.    }
  7.  
  8.    public void notationDecl(String var1, String var2, String var3) {
  9.    }
  10.  
  11.    public void unparsedEntityDecl(String var1, String var2, String var3, String var4) {
  12.    }
  13.  
  14.    public void setDocumentLocator(Locator var1) {
  15.    }
  16.  
  17.    public void startDocument() throws SAXException {
  18.    }
  19.  
  20.    public void endDocument() throws SAXException {
  21.    }
  22.  
  23.    public void startElement(String var1, AttributeList var2) throws SAXException {
  24.    }
  25.  
  26.    public void endElement(String var1) throws SAXException {
  27.    }
  28.  
  29.    public void characters(char[] var1, int var2, int var3) throws SAXException {
  30.    }
  31.  
  32.    public void ignorableWhitespace(char[] var1, int var2, int var3) throws SAXException {
  33.    }
  34.  
  35.    public void processingInstruction(String var1, String var2) throws SAXException {
  36.    }
  37.  
  38.    public void warning(SAXParseException var1) throws SAXException {
  39.    }
  40.  
  41.    public void error(SAXParseException var1) throws SAXException {
  42.    }
  43.  
  44.    public void fatalError(SAXParseException var1) throws SAXException {
  45.       throw var1;
  46.    }
  47. }
  48.