Interface SelectionContext
-
- All Known Subinterfaces:
SelectionManager
- All Known Implementing Classes:
DefaultSelectionContext
,DefaultSelectionManager
public interface SelectionContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
deselectAll()
boolean
deselectVertexRefs(Collection<? extends VertexRef> vertexRefs)
GraphContainer
getGraphContainer()
Collection<EdgeRef>
getSelectedEdgeRefs()
Collection<VertexRef>
getSelectedVertexRefs()
boolean
isEdgeRefSelected(EdgeRef edgeRef)
boolean
isVertexRefSelected(VertexRef vertexRef)
boolean
selectVertexRefs(Collection<? extends VertexRef> vertexRefs)
boolean
setSelectedEdgeRefs(Collection<? extends EdgeRef> edgeRefs)
boolean
setSelectedVertexRefs(Collection<? extends VertexRef> vertexRefs)
-
-
-
Method Detail
-
deselectAll
boolean deselectAll()
-
setSelectedVertexRefs
boolean setSelectedVertexRefs(Collection<? extends VertexRef> vertexRefs)
-
selectVertexRefs
boolean selectVertexRefs(Collection<? extends VertexRef> vertexRefs)
-
deselectVertexRefs
boolean deselectVertexRefs(Collection<? extends VertexRef> vertexRefs)
-
setSelectedEdgeRefs
boolean setSelectedEdgeRefs(Collection<? extends EdgeRef> edgeRefs)
-
isVertexRefSelected
boolean isVertexRefSelected(VertexRef vertexRef)
-
isEdgeRefSelected
boolean isEdgeRefSelected(EdgeRef edgeRef)
-
getSelectedVertexRefs
Collection<VertexRef> getSelectedVertexRefs()
-
getSelectedEdgeRefs
Collection<EdgeRef> getSelectedEdgeRefs()
-
getGraphContainer
GraphContainer getGraphContainer()
-
-