Class DirectedGraphLayoutAlgorithm
java.lang.Object
org.eclipse.zest.layouts.algorithms.AbstractLayoutAlgorithm
org.eclipse.zest.layouts.algorithms.DirectedGraphLayoutAlgorithm
- All Implemented Interfaces:
LayoutAlgorithm
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Deprecated, for removal: This API element is subject to removal in a future version. -
Field Summary
Fields inherited from class org.eclipse.zest.layouts.algorithms.AbstractLayoutAlgorithm
context
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyLayout
(boolean clean) Makes this algorithm perform layout computation and apply it to its context.int
void
setOrientation
(int orientation) Methods inherited from class org.eclipse.zest.layouts.algorithms.AbstractLayoutAlgorithm
setLayoutContext
-
Constructor Details
-
DirectedGraphLayoutAlgorithm
public DirectedGraphLayoutAlgorithm()- Since:
- 2.0
-
DirectedGraphLayoutAlgorithm
public DirectedGraphLayoutAlgorithm(int orientation)
-
-
Method Details
-
getOrientation
public int getOrientation()- Since:
- 2.0
-
setOrientation
public void setOrientation(int orientation) - Since:
- 2.0
-
applyLayout
public void applyLayout(boolean clean) Description copied from interface:LayoutAlgorithm
Makes this algorithm perform layout computation and apply it to its context.- Parameters:
clean
- if true the receiver should assume that the layout context has changed significantly and recompute the whole layout even if it keeps track of changes with listeners. False can be used after dynamic layout in a context is turned back on so that layout algorithm working in background can apply accumulated changes. Static layout algorithm can ignore this call entirely if clean is false.
-
DirectedGraphLayoutAlgorithm
instead.