| Constructor and Description |
|---|
GraphBuilder(String name,
int version,
boolean keepHistory,
Tree<Row> root) |
public Graph build()
Graph based on the tree. The depth's of a node in the tree equals the level of indentation of
a row in the typical formating. For instance, the following definition has a number of rows with depth 1 and one row
with depth 2.
.start()
.if_(1,"condition)
.value("account").call(2,"accountService","findAccount","{accountId}");
.endIf()
.end()
Node for every row. There are few rows such as START that actually don't produce a node.
Copyright © 2018. All rights reserved.