Uses of Interface
salvo.jesus.graph.Graph

Packages that use Graph
laas.friends.cosmopen.graphAnalysis This package provides the internal graph manipulation engine. 
salvo.jesus.graph   
salvo.jesus.graph.algorithm   
 

Uses of Graph in laas.friends.cosmopen.graphAnalysis
 

Subinterfaces of Graph in laas.friends.cosmopen.graphAnalysis
 interface DirectedGraphWithDict
          This interface adds dictionnaries facilities for NamedVertex vertices to a a DirectedGraph.
 

Classes in laas.friends.cosmopen.graphAnalysis that implement Graph
 class CallGraph
          This class stores a call graph that takes into account the causality between call events.
(package private)  class CondensedGraph
          The type of graph used in CallGraphToCondensedGraphTransformer to contain the result of the transformation.
 class DirectedGraphWithDictImpl
          This class adds dictionnariy facilities for NamedVertex vertices to a a DirectedGraphImpl
 

Uses of Graph in salvo.jesus.graph
 

Subinterfaces of Graph in salvo.jesus.graph
 interface CyclePath
          An empty interface that denotes a CyclePath.
 interface DirectedAcyclicGraph
          The DirectedAcyclicGraph class represents a directed acyclic graph (DAG) where there is no cyclic paths for any of its vertices.
 interface DirectedGraph
          A directed Graph where edges have a specified direction.
 interface Path
          An interface that abstracts a path in a graph.
 interface SimplePath
          An interface that denotes a Path that is simple.
 

Classes in salvo.jesus.graph that implement Graph
 class CyclePathImpl
          Implementation of CyclePath that ensures that the first and last vertices in the Path forms a cycle.
 class DirectedAcyclicGraphImpl
          The DirectedAcyclicGraph class represents a directed acyclic graph (DAG) where there is no cyclic paths for any of its vertices.
 class DirectedGraphImpl
          A directed Graph where edges have a specified direction.
(package private)  class DirectedGraphWeakImpl
          A weak implementation of the DirectedGraph interface.
 class GraphImpl
          An implementation of the Graph interface.
 class PathImpl
          An implementation of the Path interface that is a non-simple path.
 class SimplePathImpl
          Implementation of SimplePath interface guaranteeing that the path is simple, meaning no Vertex is repeated in the path.
 

Uses of Graph in salvo.jesus.graph.algorithm
 

Fields in salvo.jesus.graph.algorithm declared as Graph
(package private)  Graph GraphTraversal.graph
          The Graph on which graph traversal will be performed.
 

Constructors in salvo.jesus.graph.algorithm with parameters of type Graph
BreadthFirstTraversal(Graph graph)
          Creates a BreadthFirstTraversal object
DepthFirstGraphTraversal(Graph graph)
          Creates a DepthFirstGraphTraversal object.
GraphTraversal(Graph graph)