Uses of Interface
beowulf.model.graph.GraphModel

Packages that use GraphModel
beowulf.gui   
beowulf.model.graph   
 

Uses of GraphModel in beowulf.gui
 

Fields in beowulf.gui declared as GraphModel
protected  GraphModel JGraph.model
          Holds the graph model that this JGraph represents.
 

Methods in beowulf.gui that return GraphModel
 GraphModel JGraph.getModel()
          Returns the graph model.
 

Methods in beowulf.gui with parameters of type GraphModel
 void JGraph.setModel(GraphModel newModel)
          This method will replace the current model of this graph with the parameter.
 

Constructors in beowulf.gui with parameters of type GraphModel
JGraph(GraphModel newModel)
          This constructor takes in an existing GraphModel and uses it right away.
JGraph(GraphModel newModel, JNodeFactory newFactory)
          This constructor takes in both an existing GraphModel and a JNodeFactory, used to create JNodes.
 

Uses of GraphModel in beowulf.model.graph
 

Classes in beowulf.model.graph that implement GraphModel
 class AbstractGraphModel
          This abstract class defines event handling procedures common to all of its implementors.
 class Graph
          This class is a model of a Graph.
 class UndirectedGraph
          This class is a model of a Graph.