org._3pq.jgrapht.ext
Interface JGraphModelAdapter.CellFactory
- All Known Implementing Classes:
- JGraphModelAdapter.DefaultCellFactory
- Enclosing class:
- JGraphModelAdapter
- public static interface JGraphModelAdapter.CellFactory
Creates the JGraph cells that reflect the respective JGraphT elements.
- Since:
- Dec 12, 2003
- Author:
- Barak Naveh
Method Summary |
org.jgraph.graph.DefaultEdge |
createEdgeCell(Edge jGraphTEdge)
Creates an edge cell that contains its respective JGraphT edge. |
org.jgraph.graph.DefaultGraphCell |
createVertexCell(java.lang.Object jGraphTVertex)
Creates a vertex cell that contains its respective JGraphT vertex. |
createEdgeCell
public org.jgraph.graph.DefaultEdge createEdgeCell(Edge jGraphTEdge)
- Creates an edge cell that contains its respective JGraphT edge.
- Parameters:
jGraphTEdge
- a JGraphT edge to be contained.- Returns:
- an edge cell that contains its respective JGraphT edge.
createVertexCell
public org.jgraph.graph.DefaultGraphCell createVertexCell(java.lang.Object jGraphTVertex)
- Creates a vertex cell that contains its respective JGraphT vertex.
- Parameters:
jGraphTVertex
- a JGraphT vertex to be contained.- Returns:
- a vertex cell that contains its respective JGraphT vertex.