Class GraphRepresentation
- java.lang.Object
-
- de.hybris.platform.cockpit.components.navigationarea.workflow.visualization.servlet.GraphRepresentation
-
public final class GraphRepresentation extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaddEdge(Edge edge)booleanaddVertex(Vertex vertex)java.util.Set<Edge>getEdges()EdgeStylegetEdgeStyle()static GraphRepresentationgetInstance(boolean showStart, boolean showEnd)VertexgetVertex(java.lang.String id)java.util.Set<Vertex>getVertexes()booleanisShowEnd()booleanisShowStart()voidsetEdgeStyle(EdgeStyle edgeStyle)
-
-
-
Method Detail
-
getInstance
public static GraphRepresentation getInstance(boolean showStart, boolean showEnd)
-
addVertex
public boolean addVertex(Vertex vertex)
-
addEdge
public boolean addEdge(Edge edge)
-
getVertexes
public java.util.Set<Vertex> getVertexes()
-
getEdges
public java.util.Set<Edge> getEdges()
-
isShowStart
public boolean isShowStart()
-
isShowEnd
public boolean isShowEnd()
-
getVertex
public Vertex getVertex(java.lang.String id)
-
getEdgeStyle
public EdgeStyle getEdgeStyle()
-
setEdgeStyle
public void setEdgeStyle(EdgeStyle edgeStyle)
-
-