1 22 23 package org.xquark.util; 24 25 import org.xml.sax.Attributes ; 26 import org.xml.sax.SAXException ; 27 28 public class DefaultElementHandler implements ElementHandler { 29 private static final String RCSRevision = "$Revision: 1.1 $"; 30 private static final String RCSName = "$Name: $"; 31 public void characters(char[] ch, int start, int length) 32 throws SAXException {} 33 34 public void endElement(String namespaceURI, String localName) 35 throws SAXException {} 36 37 public void ignorableWhitespace(char[] ch, int start, int length) 38 throws SAXException {} 39 40 public void processingInstruction(String target, String data) 41 throws SAXException {} 42 43 public void skippedEntity(String name) 44 throws SAXException {} 45 46 public ElementHandler startElement(String namespaceURI, String localName, 47 Attributes atts) 48 throws SAXException 49 { 50 return this; 51 } 52 } 53 | Popular Tags |