Package org.w3c.tidy
Class PPrint
java.lang.Object
org.w3c.tidy.PPrint
Pretty print parse tree. Block-level and unknown elements are printed on new lines and their contents indented 2
spaces Inline elements are printed inline. Inline content is wrapped on spaces (except in attribute values or
preformatted text, after start tags and before end tags.
- Version:
- $Revision$ ($Author$)
- Author:
- Dave Raggett dsr@w3.org , Andy Quick ac.quick@sympatico.ca (translation to Java), Fabrizio Giustina
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addTransitionEffect
(Lexer lexer, Node root, double duration) Add meta element for page transition effect, this works on IE but not NS.void
condFlushLine
(Out fout, int indent) Conditional flush the line.void
condFlushLine
(Out fout, int indent, boolean shouldAddNewLine) Conditional flush the line.int
countSlides
(Node node) Split parse tree by h2 elements and output to separate files.void
createSlides
(Lexer lexer, Node root) Creates slides from h2.void
Flush the line.void
Flush the line.static int
getUTF8
(byte[] str, int start, int[] ch) Return one less than the number of bytes used by the UTF-8 byte sequence.void
printSlide
(Out fout, short mode, int indent, Lexer lexer) Called from printTree to print the content of a slide from the node slide content.void
void
printXMLTree
(Out fout, short mode, int indent, Lexer lexer, Node node) static int
putUTF8
(byte[] buf, int start, int c) Store char c as UTF-8 encoded byte stream.
-
Constructor Details
-
PPrint
Instantiates a new PPrint.- Parameters:
configuration
- configuration
-
-
Method Details
-
getUTF8
public static int getUTF8(byte[] str, int start, int[] ch) Return one less than the number of bytes used by the UTF-8 byte sequence. The Unicode char is returned in ch.- Parameters:
str
- points to the UTF-8 byte sequencestart
- starting offset in stringch
- initialised to 1st byte, passed as an array to allow modification- Returns:
- one less that the number of bytes used by UTF-8 char
-
putUTF8
public static int putUTF8(byte[] buf, int start, int c) Store char c as UTF-8 encoded byte stream.- Parameters:
buf
- the bufferstart
- the start offsetc
- the char- Returns:
- the current position
-
flushLine
Flush the line.- Parameters:
fout
- where to write outputindent
- the indent amountshouldAddNewLine
-true
to add new line after flush
-
flushLine
Flush the line.- Parameters:
fout
- where to write outputindent
- the indent amount
-
condFlushLine
Conditional flush the line.- Parameters:
fout
- where to write outputindent
- the indent amountshouldAddNewLine
-true
to add new line after flush
-
condFlushLine
Conditional flush the line.- Parameters:
fout
- where to write outputindent
- the indent amount
-
printTree
- Parameters:
fout
- where to write outputmode
- the mode to useindent
- the indent amountlexer
- the Lexer to usenode
- the node to use
-
printXMLTree
- Parameters:
fout
- where to write outputmode
- the mode to useindent
- the indent amountlexer
- the Lexer to usenode
- the node to use
-
countSlides
Split parse tree by h2 elements and output to separate files. Counts number of h2 children (if any) belonging to node.- Parameters:
node
- root node- Returns:
- number of slides (number of h2 elements)
-
printSlide
Called from printTree to print the content of a slide from the node slide content. On return slide content points to the node starting the next slide or null. The variables slide and count are used to customise the navigation bar.- Parameters:
fout
- where to write outputmode
- the mode to useindent
- the indent amountlexer
- the Lexer to use
-
addTransitionEffect
Add meta element for page transition effect, this works on IE but not NS.- Parameters:
lexer
- the Lexer instance to useroot
- the root nodeduration
- transition duration
-
createSlides
Creates slides from h2.- Parameters:
lexer
- Lexerroot
- root node
-