Uses of Class
net.xqhs.graphs.representation.GraphRepresentationImplementation

Packages that use GraphRepresentationImplementation
net.xqhs.graphs.representation This package contains classes that implement various manners of representation for graphs. 
net.xqhs.graphs.representation.graphical Contains necessary classes for representing graphs in a graphical manner. 
net.xqhs.graphs.representation.linear Contains necessary classes for representing graphs in a linear manner. 
net.xqhs.graphs.representation.multilevel The package contains interfaces and classes dealing with representing multi-level graphs (graphs in which whole graphs can be represented as nodes in higher-level graphs). 
net.xqhs.graphs.representation.text Contains classes for representing graphs in a textual manner, with help from a linearization process. 
 

Uses of GraphRepresentationImplementation in net.xqhs.graphs.representation
 

Methods in net.xqhs.graphs.representation that return GraphRepresentationImplementation
 GraphRepresentationImplementation GraphRepresentationImplementation.setParentRepresentation(GraphRepresentation parent)
           
 GraphRepresentationImplementation GraphRepresentationImplementation.setUnitName(java.lang.String unitName)
           
 

Uses of GraphRepresentationImplementation in net.xqhs.graphs.representation.graphical
 

Subclasses of GraphRepresentationImplementation in net.xqhs.graphs.representation.graphical
 class GraphicalGraphRepresentation
          Graphical representation for a Graph that relies on LinearGraphRepresentation to create a tree of paths and then displays the tree of paths.
 class RadialGraphRepresentation
          A representation based on the GraphicalGraphRepresentation, but using a radial layout instead of a top-down right-to-left one.
 

Uses of GraphRepresentationImplementation in net.xqhs.graphs.representation.linear
 

Subclasses of GraphRepresentationImplementation in net.xqhs.graphs.representation.linear
 class LinearGraphRepresentation
          Class that allows the representation of a Graph structure.
 

Uses of GraphRepresentationImplementation in net.xqhs.graphs.representation.multilevel
 

Subclasses of GraphRepresentationImplementation in net.xqhs.graphs.representation.multilevel
 class MultilevelGraphRepresentation
           
 class TextMultilevelGraphRepresentation
          Text representation for multilevel graphs.
 

Uses of GraphRepresentationImplementation in net.xqhs.graphs.representation.text
 

Subclasses of GraphRepresentationImplementation in net.xqhs.graphs.representation.text
 class TextGraphRepresentation
          The class implements GraphRepresentation to create (or read from) a textual representation of a graph.