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

Packages that use RepresentationElement
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.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 RepresentationElement in net.xqhs.graphs.representation
 

Fields in net.xqhs.graphs.representation declared as RepresentationElement
protected  RepresentationElement GraphRepresentationImplementation.theRepresentation
          The root representation element of this representation, from which all other elements in this representation can be found.
 

Fields in net.xqhs.graphs.representation with type parameters of type RepresentationElement
protected  java.util.Set<RepresentationElement> AbstractVisualizableGraphComponent.representations
          The set of elements representing this component.
 

Methods in net.xqhs.graphs.representation that return RepresentationElement
 RepresentationElement VisualizableGraphComponent.getFirstRepresentationForRoot(GraphRepresentation representation)
          Gets the first (and potentially only) element representing this component that is part of the specified (multi-level) representation.
 RepresentationElement AbstractVisualizableGraphComponent.getFirstRepresentationForRoot(GraphRepresentation root)
           
abstract  RepresentationElement GraphRepresentationImplementation.getRepresentation()
           
 RepresentationElement GraphRepresentation.getRepresentation()
          Gets the root element of the representation.
 

Methods in net.xqhs.graphs.representation that return types with arguments of type RepresentationElement
 java.util.Collection<RepresentationElement> VisualizableGraphComponent.getRepresentations()
          Gets a collection of the elements representing this component (in various representations).
 java.util.Collection<RepresentationElement> AbstractVisualizableGraphComponent.getRepresentations()
           
 java.util.Collection<RepresentationElement> VisualizableGraphComponent.getRepresentationsForRoot(GraphRepresentation representation)
          Gets a collection of elements representing this component, filtered to match only the one(s) that belong to a particular (multi-level) representation.
 java.util.Collection<RepresentationElement> AbstractVisualizableGraphComponent.getRepresentationsForRoot(GraphRepresentation root)
           
 

Methods in net.xqhs.graphs.representation with parameters of type RepresentationElement
 void VisualizableGraphComponent.addRepresentation(RepresentationElement repr)
          Adds a new representation for this component (as a RepresentationElement) to the list of active representations.
 void AbstractVisualizableGraphComponent.addRepresentation(RepresentationElement repr)
           
 

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

Subclasses of RepresentationElement in net.xqhs.graphs.representation.graphical
 class GraphicalRepresentationElement
          Extension of RepresentationElement for graphical representations.
 

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

Methods in net.xqhs.graphs.representation.multilevel that return RepresentationElement
 RepresentationElement TextMultilevelGraphRepresentation.getRepresentation()
           
 

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

Subclasses of RepresentationElement in net.xqhs.graphs.representation.text
 class TextRepresentationElement
          The class contains the information that is necessary to represent one component of the graph represented by the parent TextGraphRepresentation, such as a node, an edge, a subgraph, a graph.
 

Methods in net.xqhs.graphs.representation.text that return RepresentationElement
 RepresentationElement TextGraphRepresentation.getRepresentation()