Class FlowGraphToGraphDotConverterSettings
- java.lang.Object
-
- de.xima.fc.workflow.designer.logic.FlowGraphToGraphDotConverterSettings
-
public final class FlowGraphToGraphDotConverterSettings extends Object
Settings forFlowGraphToGraphDotConverter
.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FlowGraphToGraphDotConverterSettings.Builder
Builder to buildFlowGraphToGraphDotConverterSettings
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FlowGraphToGraphDotConverterSettings.Builder
builder()
Creates builder to buildFlowGraphToGraphDotConverterSettings
.boolean
constrainLayoutToFlow()
boolean
constrainLayoutToHierarchy()
ERankDirection
direction()
boolean
ignoreBackwardsEdgesForLayout()
Locale
locale()
boolean
separateUnreachableNodes()
boolean
showAllNodeNames()
boolean
showHierarchyEdges()
-
-
-
Method Detail
-
constrainLayoutToFlow
public boolean constrainLayoutToFlow()
- Returns:
true
to take the computed flow edges into account when computing the layout.
-
constrainLayoutToHierarchy
public boolean constrainLayoutToHierarchy()
- Returns:
true
to take the hierarchy from the abstract syntax tree into account when computing the layout.
-
direction
public ERankDirection direction()
- Returns:
- Direction of the layout.
-
ignoreBackwardsEdgesForLayout
public boolean ignoreBackwardsEdgesForLayout()
- Returns:
true
to ignore backwards edges when computing the layout.
-
locale
public Locale locale()
- Returns:
- Locale for localizing node types etc.
-
separateUnreachableNodes
public boolean separateUnreachableNodes()
- Returns:
- Whether to draw unreachable nodes as a separate cluster.
-
showAllNodeNames
public boolean showAllNodeNames()
- Returns:
- When
true
, show all nodes names, even for nodes that do not have auser visible
name.
-
showHierarchyEdges
public boolean showHierarchyEdges()
- Returns:
true
to show hierarchy edges from the syntax tree.
-
builder
public static FlowGraphToGraphDotConverterSettings.Builder builder()
Creates builder to buildFlowGraphToGraphDotConverterSettings
.- Returns:
- created builder
-
-