Uses of Class
org.eclipse.gef.zest.fx.parts.NodePart
-
Packages that use NodePart Package Description org.eclipse.gef.zest.fx.behaviors This package provides behaviors for transferring information between graph model elements and layout abstractions (GraphLayoutBehavior
,AbstractLayoutBehavior
,NodeLayoutBehavior
,EdgeLayoutBehavior
), as well as hiding/unhiding of nodes and related edges (AbstractHidingBehavior
,NodeHidingBehavior
,EdgeHidingBehavior
,EdgeLabelHidingBehavior
).org.eclipse.gef.zest.fx.handlers This package provides handler implementations for Zest interactions.org.eclipse.gef.zest.fx.models This package provides viewer models to support hiding/unhiding of nodes (HidingModel
) as well as semantic zooming (NavigationModel
).org.eclipse.gef.zest.fx.operations This package provides anIUndoableOperation
to support hiding/unhiding of nodes and related edges (HideOperation
).org.eclipse.gef.zest.fx.policies This package provides policy implementations to support hiding/unhiding of nodes and related edges (HidePolicy
,ShowHiddenNeighborsPolicy
), as well as semantic zooming (SemanticZoomPolicy
), and label transformation. -
-
Uses of NodePart in org.eclipse.gef.zest.fx.behaviors
Methods in org.eclipse.gef.zest.fx.behaviors that return NodePart Modifier and Type Method Description NodePart
NodeHidingBehavior. getHost()
NodePart
NodeLayoutBehavior. getHost()
protected NodePart
GraphLayoutBehavior. getNestingPart()
Returns theNodePart
that contains the nested graph to which the behavior corresponds, if this behavior is related to a nested graph. -
Uses of NodePart in org.eclipse.gef.zest.fx.handlers
Methods in org.eclipse.gef.zest.fx.handlers that return NodePart Modifier and Type Method Description NodePart
HideOnTypeHandler. getHost()
NodePart
OpenNestedGraphOnDoubleClickHandler. getHost()
NodePart
ShowHiddenNeighborsOnTypeHandler. getHost()
Methods in org.eclipse.gef.zest.fx.handlers with parameters of type NodePart Modifier and Type Method Description protected java.util.List<AbstractLabelPart>
LabelOffsetSupport. getNodeLabelParts(NodePart nodePart)
Returns theAbstractLabelPart
s attached to the givenNodePart
. -
Uses of NodePart in org.eclipse.gef.zest.fx.models
Methods in org.eclipse.gef.zest.fx.models that return types with arguments of type NodePart Modifier and Type Method Description java.util.Set<NodePart>
HidingModel. getHiddenNeighborParts(NodePart nodePart)
Methods in org.eclipse.gef.zest.fx.models with parameters of type NodePart Modifier and Type Method Description java.util.Set<NodePart>
HidingModel. getHiddenNeighborParts(NodePart nodePart)
boolean
HidingModel. hasHiddenNeighbors(NodePart nodePart)
Returnstrue
if at least one neighbor of the givenNodePart
is currently hidden.void
HidingModel. hide(NodePart nodePart)
boolean
HidingModel. isHidden(NodePart nodePart)
void
HidingModel. show(NodePart nodePart)
-
Uses of NodePart in org.eclipse.gef.zest.fx.operations
Constructors in org.eclipse.gef.zest.fx.operations with parameters of type NodePart Constructor Description HideOperation(IViewer viewer, NodePart nodePart)
Constructs a newHideOperation
that will hide the givenNodePart
upon execution.ShowHiddenNeighborsOperation(IViewer viewer, NodePart nodePart)
Constructs a newShowHiddenNeighborsOperation
that will show all hidden neighbors of the givenNodePart
by removing them from theHidingModel
of the givenIViewer
upon execution. -
Uses of NodePart in org.eclipse.gef.zest.fx.policies
Methods in org.eclipse.gef.zest.fx.policies that return NodePart Modifier and Type Method Description NodePart
HidePolicy. getHost()
NodePart
ShowHiddenNeighborsPolicy. getHost()
Methods in org.eclipse.gef.zest.fx.policies that return types with arguments of type NodePart Modifier and Type Method Description protected java.util.List<NodePart>
SemanticZoomPolicy. findNestingNodes()
Returns aList
containing allNodePart
s (within the currently rendered graph) that have a nested graph assigned to them.Methods in org.eclipse.gef.zest.fx.policies with parameters of type NodePart Modifier and Type Method Description protected ITransactionalOperation
HidePolicy. createDeselectOperation(NodePart part)
Returns anITransactionalOperation
that removes the givenNodePart
from theSelectionModel
of the correspondingIViewer
.protected ITransactionalOperation
HidePolicy. createHideOperation(NodePart part)
protected ITransactionalOperation
HidePolicy. createUnfocusOperation(NodePart part)
Returns anITransactionalOperation
that removes the givenNodePart
from theFocusModel
of the correspondingIViewer
.
-