DependencyNodeVisitor
public class SerializingDependencyNodeVisitor extends java.lang.Object implements DependencyNodeVisitor
Modifier and Type | Class | Description |
---|---|---|
static class |
SerializingDependencyNodeVisitor.GraphTokens |
Provides tokens to use when serializing the dependency graph.
|
Modifier and Type | Field | Description |
---|---|---|
static SerializingDependencyNodeVisitor.GraphTokens |
EXTENDED_TOKENS |
The extended ASCII tokens to use when outputing the dependency graph.
|
static SerializingDependencyNodeVisitor.GraphTokens |
STANDARD_TOKENS |
The standard ASCII tokens to use when outputing the dependency graph.
|
static SerializingDependencyNodeVisitor.GraphTokens |
WHITESPACE_TOKENS |
Whitespace tokens to use when outputing the dependency graph.
|
Constructor | Description |
---|---|
SerializingDependencyNodeVisitor(java.io.Writer writer) |
Creates a dependency node visitor that serializes visited nodes to the specified writer using whitespace tokens.
|
SerializingDependencyNodeVisitor(java.io.Writer writer,
SerializingDependencyNodeVisitor.GraphTokens tokens) |
Creates a dependency node visitor that serializes visited nodes to the specified writer using the specified
tokens.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
endVisit(DependencyNode node) |
Ends the visit to to the specified dependency node.
|
boolean |
visit(DependencyNode node) |
Starts the visit to the specified dependency node.
|
public static final SerializingDependencyNodeVisitor.GraphTokens WHITESPACE_TOKENS
public static final SerializingDependencyNodeVisitor.GraphTokens STANDARD_TOKENS
public static final SerializingDependencyNodeVisitor.GraphTokens EXTENDED_TOKENS
public SerializingDependencyNodeVisitor(java.io.Writer writer)
writer
- the writer to serialize topublic SerializingDependencyNodeVisitor(java.io.Writer writer, SerializingDependencyNodeVisitor.GraphTokens tokens)
writer
- the writer to serialize totokens
- the tokens to use when serializing the dependency graphpublic boolean visit(DependencyNode node)
visit
in interface DependencyNodeVisitor
node
- the dependency node to visittrue
to visit the specified dependency node's children, false
to skip the
specified dependency node's children and proceed to its next siblingpublic boolean endVisit(DependencyNode node)
endVisit
in interface DependencyNodeVisitor
node
- the dependency node to visittrue
to visit the specified dependency node's next sibling, false
to skip the
specified dependency node's next siblings and proceed to its parent