Interface VertexSupport<V,E>
-
- Type Parameters:
V- the vertex 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:
- tanelso
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)voidmidVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)voidstartVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)
-
-
-
Method Detail
-
startVertexCreate
void startVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)
-
midVertexCreate
void midVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)
-
endVertexCreate
void endVertexCreate(BasicVisualizationServer<V,E> vv, java.awt.geom.Point2D point)
-
-