Uses of Class
com.jgraph.graph.GraphView

Packages that use GraphView
com.jgraph JGraph's topmost package which contains the JGraph class. 
com.jgraph.event Contains event classes and listener interfaces that are used to react to events fired by JGraph. 
com.jgraph.graph Graphs are made up of a number of classes and interfaces defined in their own package - the jgraph.graph package. 
com.jgraph.plaf.basic Contains the BasicGraphUI, which is GraphUI's default implementation. 
 

Uses of GraphView in com.jgraph
 

Fields in com.jgraph declared as GraphView
protected  GraphView JGraph.graphView
          The view that defines the display properties of the model.
 

Methods in com.jgraph that return GraphView
protected static GraphView JGraph.createDefaultGraphView(JGraph graph)
          Creates and returns a default GraphView.
 GraphView JGraph.getView()
          Returns the GraphView that is providing the view-data.
 

Methods in com.jgraph with parameters of type GraphView
 void JGraph.setView(GraphView newView)
          Sets the GraphView that will provide the view-data.
 

Constructors in com.jgraph with parameters of type GraphView
JGraph(GraphModel model, GraphView view)
          Returns an instance of JGraph which displays the specified data model using the specified view.
JGraph(GraphModel model, GraphView view, BasicMarqueeHandler mh)
          Returns an instance of JGraph which displays the specified data model using the specified view.
 

Uses of GraphView in com.jgraph.event
 

Methods in com.jgraph.event with parameters of type GraphView
 void GraphModelEvent.GraphModelChange.putViews(GraphView view, CellView[] cellViews)
          Allows a GraphView to store an array of CellViews (used for command history).
 CellView[] GraphModelEvent.GraphModelChange.getViews(GraphView view)
          Allows a GraphView to retrieve an array of CellViews that was previously stored with putViews(GraphView, CellView[]).
 

Uses of GraphView in com.jgraph.graph
 

Fields in com.jgraph.graph declared as GraphView
protected  GraphView GraphContext.graphView
          Reference to the graphs GraphView.
 

Methods in com.jgraph.graph with parameters of type GraphView
 void DefaultGraphModel.GraphModelEdit.putViews(GraphView view, CellView[] views)
           
 CellView[] DefaultGraphModel.GraphModelEdit.getViews(GraphView view)
           
 CellView[] DefaultGraphModel.GraphModelLayerEdit.getViews(GraphView view)
          Returns the views that have not changed explicitly, but implicitly because one of their dependent cells has changed.
 void DefaultGraphModel.GraphModelLayerEdit.putViews(GraphView view, CellView[] cellViews)
          Returns the views that have not changed explicitly, but implicitly because one of their dependent cells has changed.
 

Uses of GraphView in com.jgraph.plaf.basic
 

Fields in com.jgraph.plaf.basic declared as GraphView
protected  GraphView BasicGraphUI.graphView
          Reference to the graph's view (geometric pattern).
 

Methods in com.jgraph.plaf.basic with parameters of type GraphView
protected  void BasicGraphUI.setView(GraphView view)
          Sets the GraphView (geometric pattern).