Uses of Class
ccvisu.GraphVertex

Uses of GraphVertex in ccvisu
 

Fields in ccvisu declared as GraphVertex
(package private)  GraphVertex ReaderDataLAY.LayoutEntry.vertex
           
 

Fields in ccvisu with type parameters of type GraphVertex
 java.util.Map<java.lang.String,GraphVertex> GraphData.nameToVertex
          Maps a vertex name to a GraphVertex.
 java.util.Vector<GraphVertex> GraphData.vertices
          Maps a vertex id to a GraphVertex.
 

Methods in ccvisu that return GraphVertex
 GraphVertex Cluster.getNode(int i)
          return the i-th element of the Cluster this method's purpose is to easily iterate on each node of the cluster
 

Methods in ccvisu with parameters of type GraphVertex
 void Cluster.addNode(GraphVertex vertex)
          add the given node to the cluster
 void MarkerScript.mark(GraphVertex vertex)
          Special marking for certain vertices by setting attributes of the vertex
 void MarkerExp.mark(GraphVertex curVertex)
          Special marking for certain vertices by setting attributes of the vertex, e.g., color and showName.
 void Marker.mark(GraphVertex vertex)
          Special marking for certain vertices by setting attributes of the vertex, e.g., color and showName.
 void Cluster.removeNode(GraphVertex vertex)
          remove from cluster the given node
 void WriterDataGraphicsDISP.showLabel(GraphVertex vertex, boolean show)
          show/hide the name of a vertex
 void MarkerScript.ColorCondition.test(GraphVertex vertex)
          if the vertex correspond to the condition, changes its color
 void WriterDataGraphicsVRML.writeVertex(GraphVertex curVertex, int xPos, int yPos, int zPos, int radius)
          Writes a vertex in VRML format.
 void WriterDataGraphicsSVG.writeVertex(GraphVertex curVertex, int xPos, int yPos, int zPos, int radius)
          Writes a vertex in SVG format.
 void WriterDataGraphicsDISP.writeVertex(GraphVertex curVertex, int xPos, int yPos, int zPos, int radius)
          Writes a vertex on screen.
abstract  void WriterDataGraphics.writeVertex(GraphVertex curVertex, int xPos, int yPos, int zPos, int radius)
          Writes a vertex.