public class TreeStyle extends Object
TreeStyles class.
The README on the project's website has detailed information about how to define custom tree styles.
TreeStyles| Constructor and Description |
|---|
TreeStyle(String pJunction,
String pIndent,
String pLastJunction)
Constructor.
|
TreeStyle(String pJunction,
String pIndent,
String pLastJunction,
String pCalloutStart,
String pCalloutEnd)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getBlankIndent() |
String |
getBlankIndentTrimmed() |
String |
getCalloutEnd() |
String |
getCalloutStart() |
String |
getIndent() |
String |
getIndentTrimmed() |
String |
getJunction() |
String |
getLastJunction() |
public TreeStyle(String pJunction, String pIndent, String pLastJunction)
pJunction - the text fragment for an edge with a junctionpIndent - the text fragment for an edge without a junctionpLastJunction - the text fragment for a junction which is the last in its node (the last child of a
node)TreeStylespublic TreeStyle(String pJunction, String pIndent, String pLastJunction, String pCalloutStart, String pCalloutEnd)
pJunction - the text fragment for an edge with a junctionpIndent - the text fragment for an edge without a junctionpLastJunction - the text fragment for a junction which is the last in its node (the last child of a
node)pCalloutStart - the text fragment printed in front of a callout, for example "<"pCalloutEnd - the text fragment printed after the end of a callout, for example ">"TreeStyles