|
|
|
|
|
|
|
*/ |
|
/* |
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
* contributor license agreements. See the NOTICE file distributed with |
|
* this work for additional information regarding copyright ownership. |
|
* The ASF licenses this file to You 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 com.sun.org.apache.xml.internal.serializer; |
|
|
|
import java.io.IOException; |
|
import java.io.OutputStream; |
|
import java.io.Writer; |
|
import java.util.Properties; |
|
|
|
import org.w3c.dom.Node; |
|
import org.xml.sax.Attributes; |
|
import org.xml.sax.ContentHandler; |
|
import org.xml.sax.Locator; |
|
import org.xml.sax.SAXException; |
|
import org.xml.sax.ext.LexicalHandler; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public final class ToTextSAXHandler extends ToSAXHandler |
|
{ |
|
|
|
|
|
|
|
*/ |
|
public void endElement(String elemName) throws SAXException |
|
{ |
|
if (m_tracer != null) |
|
super.fireEndElem(elemName); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void endElement(String arg0, String arg1, String arg2) |
|
throws SAXException |
|
{ |
|
if (m_tracer != null) |
|
super.fireEndElem(arg2); |
|
} |
|
|
|
public ToTextSAXHandler(ContentHandler hdlr, LexicalHandler lex, String encoding) |
|
{ |
|
super(hdlr, lex, encoding); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public ToTextSAXHandler(ContentHandler handler, String encoding) |
|
{ |
|
super(handler,encoding); |
|
} |
|
|
|
public void comment(char ch[], int start, int length) |
|
throws org.xml.sax.SAXException |
|
{ |
|
if (m_tracer != null) |
|
super.fireCommentEvent(ch, start, length); |
|
} |
|
|
|
public void comment(String data) throws org.xml.sax.SAXException |
|
{ |
|
final int length = data.length(); |
|
if (length > m_charsBuff.length) |
|
{ |
|
m_charsBuff = new char[length*2 + 1]; |
|
} |
|
data.getChars(0, length, m_charsBuff, 0); |
|
comment(m_charsBuff, 0, length); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public Properties getOutputFormat() |
|
{ |
|
return null; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public OutputStream getOutputStream() |
|
{ |
|
return null; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public Writer getWriter() |
|
{ |
|
return null; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void indent(int n) throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public boolean reset() |
|
{ |
|
return false; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void serialize(Node node) throws IOException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public boolean setEscaping(boolean escape) |
|
{ |
|
return false; |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void setIndent(boolean indent) |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void setOutputFormat(Properties format) |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void setOutputStream(OutputStream output) |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void setWriter(Writer writer) |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void addAttribute( |
|
String uri, |
|
String localName, |
|
String rawName, |
|
String type, |
|
String value, |
|
boolean XSLAttribute) |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void attributeDecl( |
|
String arg0, |
|
String arg1, |
|
String arg2, |
|
String arg3, |
|
String arg4) |
|
throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void elementDecl(String arg0, String arg1) throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void externalEntityDecl(String arg0, String arg1, String arg2) |
|
throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void internalEntityDecl(String arg0, String arg1) |
|
throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void endPrefixMapping(String arg0) throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void ignorableWhitespace(char[] arg0, int arg1, int arg2) |
|
throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void processingInstruction(String arg0, String arg1) |
|
throws SAXException |
|
{ |
|
if (m_tracer != null) |
|
super.fireEscapingEvent(arg0, arg1); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void setDocumentLocator(Locator arg0) |
|
{ |
|
super.setDocumentLocator(arg0); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void skippedEntity(String arg0) throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void startElement( |
|
String arg0, |
|
String arg1, |
|
String arg2, |
|
Attributes arg3) |
|
throws SAXException |
|
{ |
|
flushPending(); |
|
super.startElement(arg0, arg1, arg2, arg3); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void endCDATA() throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void endDTD() throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void startCDATA() throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void startEntity(String arg0) throws SAXException |
|
{ |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void startElement( |
|
String elementNamespaceURI, |
|
String elementLocalName, |
|
String elementName) throws SAXException |
|
{ |
|
super.startElement(elementNamespaceURI, elementLocalName, elementName); |
|
} |
|
|
|
public void startElement( |
|
String elementName) throws SAXException |
|
{ |
|
super.startElement(elementName); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void endDocument() throws SAXException { |
|
|
|
flushPending(); |
|
m_saxHandler.endDocument(); |
|
|
|
if (m_tracer != null) |
|
super.fireEndDoc(); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void characters(String characters) |
|
throws SAXException |
|
{ |
|
final int length = characters.length(); |
|
if (length > m_charsBuff.length) |
|
{ |
|
m_charsBuff = new char[length*2 + 1]; |
|
} |
|
characters.getChars(0, length, m_charsBuff, 0); |
|
|
|
m_saxHandler.characters(m_charsBuff, 0, length); |
|
|
|
} |
|
|
|
|
|
*/ |
|
public void characters(char[] characters, int offset, int length) |
|
throws SAXException |
|
{ |
|
|
|
m_saxHandler.characters(characters, offset, length); |
|
|
|
|
|
if (m_tracer != null) |
|
super.fireCharEvent(characters, offset, length); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void addAttribute(String name, String value) |
|
{ |
|
// do nothing |
|
} |
|
|
|
|
|
public boolean startPrefixMapping( |
|
String prefix, |
|
String uri, |
|
boolean shouldFlush) |
|
throws SAXException |
|
{ |
|
|
|
return false; |
|
} |
|
|
|
|
|
public void startPrefixMapping(String prefix, String uri) |
|
throws org.xml.sax.SAXException |
|
{ |
|
// no namespace support for HTML |
|
} |
|
|
|
|
|
public void namespaceAfterStartElement( |
|
final String prefix, |
|
final String uri) |
|
throws SAXException |
|
{ |
|
// no namespace support for HTML |
|
} |
|
|
|
} |