Package com.sun.xml.txw2.output
Class IndentingXMLFilter
java.lang.Object
org.xml.sax.helpers.XMLFilterImpl
com.sun.xml.txw2.output.IndentingXMLFilter
- All Implemented Interfaces:
ContentHandler,DTDHandler,EntityResolver,ErrorHandler,LexicalHandler,XMLFilter,XMLReader
XMLFilterImpl that does indentation to SAX events.- Author:
- Kohsuke Kawaguchi
-
Constructor Summary
ConstructorsConstructorDescriptionIndentingXMLFilter(ContentHandler handler) IndentingXMLFilter(ContentHandler handler, LexicalHandler lexical) -
Method Summary
Modifier and TypeMethodDescriptionvoidcharacters(char[] ch, int start, int length) Write a sequence of characters.voidcomment(char[] ch, int start, int length) voidendCDATA()voidendDTD()voidendElement(String uri, String localName, String qName) Write an end tag.voidintDeprecated.Only return the length of the indent string.voidsetIndentStep(int indentStep) Deprecated.Should use the version that takes string.voidvoidsetLexicalHandler(LexicalHandler lexical) voidvoidvoidstartElement(String uri, String localName, String qName, Attributes atts) Write a start tag.voidstartEntity(String name) Methods inherited from class org.xml.sax.helpers.XMLFilterImpl
endDocument, endPrefixMapping, error, fatalError, getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getParent, getProperty, ignorableWhitespace, notationDecl, parse, parse, processingInstruction, resolveEntity, setContentHandler, setDocumentLocator, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setParent, setProperty, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
-
Constructor Details
-
IndentingXMLFilter
public IndentingXMLFilter() -
IndentingXMLFilter
-
IndentingXMLFilter
-
-
Method Details
-
getLexicalHandler
-
setLexicalHandler
-
getIndentStep
Deprecated.Only return the length of the indent string.Return the current indent step.Return the current indent step: each start tag will be indented by this number of spaces times the number of ancestors that the element has.
- Returns:
- The number of spaces in each indentation step, or 0 or less for no indentation.
- See Also:
-
setIndentStep
Deprecated.Should use the version that takes string.Set the current indent step.- Parameters:
indentStep- The new indent step (0 or less for no indentation).- See Also:
-
setIndentStep
-
startElement
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException Write a start tag.Each tag will begin on a new line, and will be indented by the current indent step times the number of ancestors that the element has.
The newline and indentation will be passed on down the filter chain through regular characters events.
- Specified by:
startElementin interfaceContentHandler- Overrides:
startElementin classXMLFilterImpl- Parameters:
uri- The element's Namespace URI.localName- The element's local name.qName- The element's qualified (prefixed) name.atts- The element's attribute list.- Throws:
SAXException- If there is an error writing the start tag, or if a filter further down the chain raises an exception.- See Also:
-
endElement
Write an end tag.If the element has contained other elements, the tag will appear indented on a new line; otherwise, it will appear immediately following whatever came before.
The newline and indentation will be passed on down the filter chain through regular characters events.
- Specified by:
endElementin interfaceContentHandler- Overrides:
endElementin classXMLFilterImpl- Parameters:
uri- The element's Namespace URI.localName- The element's local name.qName- The element's qualified (prefixed) name.- Throws:
SAXException- If there is an error writing the end tag, or if a filter further down the chain raises an exception.- See Also:
-
characters
Write a sequence of characters.- Specified by:
charactersin interfaceContentHandler- Overrides:
charactersin classXMLFilterImpl- Parameters:
ch- The characters to write.start- The starting position in the array.length- The number of characters to use.- Throws:
SAXException- If there is an error writing the characters, or if a filter further down the chain raises an exception.- See Also:
-
comment
- Specified by:
commentin interfaceLexicalHandler- Throws:
SAXException
-
startDTD
- Specified by:
startDTDin interfaceLexicalHandler- Throws:
SAXException
-
endDTD
- Specified by:
endDTDin interfaceLexicalHandler- Throws:
SAXException
-
startEntity
- Specified by:
startEntityin interfaceLexicalHandler- Throws:
SAXException
-
endEntity
- Specified by:
endEntityin interfaceLexicalHandler- Throws:
SAXException
-
startCDATA
- Specified by:
startCDATAin interfaceLexicalHandler- Throws:
SAXException
-
endCDATA
- Specified by:
endCDATAin interfaceLexicalHandler- Throws:
SAXException
-