Interface VertexSupport<V,E>
-
- Type Parameters:
V
- vertex typeE
- edge type
- All Known Implementing Classes:
SimpleVertexSupport
public interface VertexSupport<V,E>
interface to support the creation of new vertices by the EditingGraphMousePlugin. SimpleVertexSupport is a sample implementation.- Author:
- Tom Nelson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
endVertexCreate(VisualizationServer<V,E> vv, Point2D point)
void
midVertexCreate(VisualizationServer<V,E> vv, Point2D point)
void
startVertexCreate(VisualizationServer<V,E> vv, Point2D point)
-
-
-
Method Detail
-
startVertexCreate
void startVertexCreate(VisualizationServer<V,E> vv, Point2D point)
-
midVertexCreate
void midVertexCreate(VisualizationServer<V,E> vv, Point2D point)
-
endVertexCreate
void endVertexCreate(VisualizationServer<V,E> vv, Point2D point)
-
-