blob: 5ebf7cf7fd2bcc15499d1d831927fe6016d6c3c4 [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.taglib;
import org.xml.sax.Attributes;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
/**
* @author <a href="mailto:volker.schmitt@basf-it-services.com">Volker Schmitt</a>
* @version CVS $Id: XMLConsumerTagSupport.java,v 1.3 2004/03/05 13:02:24 bdelacretaz Exp $
*/
public abstract class XMLConsumerTagSupport extends VarTagSupport implements XMLConsumerTag {
/*
* @see ContentHandler#characters(char[], int, int)
*/
public void characters(char[] ch, int start, int length) throws SAXException {
}
/*
* @see ContentHandler#endDocument()
*/
public void endDocument() throws SAXException {
}
/*
* @see ContentHandler#endElement(String, String, String)
*/
public void endElement(String namespaceURI, String localName, String qName) throws SAXException {
}
/*
* @see ContentHandler#endPrefixMapping(String)
*/
public void endPrefixMapping(String prefix) throws SAXException {
}
/*
* @see ContentHandler#ignorableWhitespace(char[], int, int)
*/
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
}
/*
* @see ContentHandler#processingInstruction(String, String)
*/
public void processingInstruction(String target, String data) throws SAXException {
}
/*
* @see ContentHandler#setDocumentLocator(Locator)
*/
public void setDocumentLocator(Locator locator) {
}
/*
* @see ContentHandler#skippedEntity(String)
*/
public void skippedEntity(String name) throws SAXException {
}
/*
* @see ContentHandler#startDocument()
*/
public void startDocument() throws SAXException {
}
/*
* @see ContentHandler#startElement(String, String, String, Attributes)
*/
public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
}
/*
* @see ContentHandler#startPrefixMapping(String, String)
*/
public void startPrefixMapping(String prefix, String uri) throws SAXException {
}
/*
* @see LexicalHandler#comment(char[], int, int)
*/
public void comment(char[] ch, int start, int length) throws SAXException {
}
/*
* @see LexicalHandler#endCDATA()
*/
public void endCDATA() throws SAXException {
}
/*
* @see LexicalHandler#endDTD()
*/
public void endDTD() throws SAXException {
}
/*
* @see LexicalHandler#endEntity(String)
*/
public void endEntity(String name) throws SAXException {
}
/*
* @see LexicalHandler#startCDATA()
*/
public void startCDATA() throws SAXException {
}
/*
* @see LexicalHandler#startDTD(String, String, String)
*/
public void startDTD(String name, String publicId, String systemId) throws SAXException {
}
/*
* @see LexicalHandler#startEntity(String)
*/
public void startEntity(String name) throws SAXException {
}
}