Package org.codehaus.plexus.util.xml
Class PrettyPrintXMLWriter
java.lang.Object
org.codehaus.plexus.util.xml.PrettyPrintXMLWriter
- All Implemented Interfaces:
XMLWriter
- Direct Known Subclasses:
CompactXMLWriter
Implementation of XMLWriter which emits nicely formatted documents.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionPrettyPrintXMLWriter
(PrintWriter writer) PrettyPrintXMLWriter
(PrintWriter writer, String lineIndenter) PrettyPrintXMLWriter
(PrintWriter writer, String encoding, String doctype) PrettyPrintXMLWriter
(PrintWriter writer, String lineIndenter, String encoding, String doctype) PrettyPrintXMLWriter
(PrintWriter writer, String lineIndenter, String lineSeparator, String encoding, String doctype) PrettyPrintXMLWriter
(Writer writer) PrettyPrintXMLWriter
(Writer writer, String lineIndenter) PrettyPrintXMLWriter
(Writer writer, String encoding, String doctype) PrettyPrintXMLWriter
(Writer writer, String lineIndenter, String encoding, String doctype) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addAttribute
(String key, String value) void
protected void
Write the end of line character (using specified line separator) and start new line with indentationprotected int
getDepth()
Get the current depth in the xml indentationprotected String
Get the docType in the xmlprotected LinkedList<String>
protected String
Get the current encoding in the xmlprotected String
Get the string used as line indenterprotected String
Get the string used as line separator or LS if not set.protected PrintWriter
Get the underlying writerprotected void
setDepth
(int depth) Set the depth in the xml indentationprotected void
setDocType
(String docType) Set the docType in the xmlprotected void
setEncoding
(String encoding) Set the encoding in the xmlprotected void
setLineIndenter
(String lineIndenter) Set the string used as line indenterprotected void
setLineSeparator
(String lineSeparator) Set the string used as line separatorprotected void
setWriter
(PrintWriter writer) Set the underlying writervoid
startElement
(String name) void
writeMarkup
(String text) void
-
Field Details
-
LS
Line separator ("\n" on UNIX)
-
-
Constructor Details
-
PrettyPrintXMLWriter
- Parameters:
writer
- not nulllineIndenter
- could be null, but the normal way is some spaces.
-
PrettyPrintXMLWriter
- Parameters:
writer
- not nulllineIndenter
- could be null, but the normal way is some spaces.
-
PrettyPrintXMLWriter
- Parameters:
writer
- not null
-
PrettyPrintXMLWriter
- Parameters:
writer
- not null
-
PrettyPrintXMLWriter
public PrettyPrintXMLWriter(PrintWriter writer, String lineIndenter, String encoding, String doctype) - Parameters:
writer
- not nulllineIndenter
- could be null, but the normal way is some spaces.encoding
- could be null or invalid.doctype
- could be null.
-
PrettyPrintXMLWriter
- Parameters:
writer
- not nulllineIndenter
- could be null, but the normal way is some spaces.encoding
- could be null or invalid.doctype
- could be null.
-
PrettyPrintXMLWriter
- Parameters:
writer
- not nullencoding
- could be null or invalid.doctype
- could be null.
-
PrettyPrintXMLWriter
- Parameters:
writer
- not nullencoding
- could be null or invalid.doctype
- could be null.
-
PrettyPrintXMLWriter
public PrettyPrintXMLWriter(PrintWriter writer, String lineIndenter, String lineSeparator, String encoding, String doctype) - Parameters:
writer
- not nulllineIndenter
- could be null, but the normal way is some spaces.lineSeparator
- could be null, but the normal way is valid line separator ("\n" on UNIX).encoding
- could be null or invalid.doctype
- could be null.
-
-
Method Details
-
startElement
- Specified by:
startElement
in interfaceXMLWriter
-
writeText
-
writeMarkup
- Specified by:
writeMarkup
in interfaceXMLWriter
-
addAttribute
- Specified by:
addAttribute
in interfaceXMLWriter
-
endElement
public void endElement()- Specified by:
endElement
in interfaceXMLWriter
-
getLineIndenter
Get the string used as line indenter- Returns:
- the line indenter
-
setLineIndenter
Set the string used as line indenter- Parameters:
lineIndenter
- new line indenter, could be null, but the normal way is some spaces.
-
getLineSeparator
Get the string used as line separator or LS if not set.- Returns:
- the line separator
- See Also:
-
setLineSeparator
Set the string used as line separator- Parameters:
lineSeparator
- new line separator, could be null but the normal way is valid line separator ("\n" on UNIX).
-
endOfLine
protected void endOfLine()Write the end of line character (using specified line separator) and start new line with indentation- See Also:
-
setWriter
Set the underlying writer- Parameters:
writer
- not null writer
-
getWriter
Get the underlying writer- Returns:
- the underlying writer
-
setDepth
protected void setDepth(int depth) Set the depth in the xml indentation- Parameters:
depth
- new depth
-
getDepth
protected int getDepth()Get the current depth in the xml indentation- Returns:
- the current depth
-
setEncoding
Set the encoding in the xml- Parameters:
encoding
- new encoding
-
getEncoding
Get the current encoding in the xml- Returns:
- the current encoding
-
setDocType
Set the docType in the xml- Parameters:
docType
- new docType
-
getDocType
Get the docType in the xml- Returns:
- the current docType
-
getElementStack
- Returns:
- the current elementStack;
-