Uses of Class
com.jgraph.graph.ConnectionSet

Packages that use ConnectionSet
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 ConnectionSet in com.jgraph.graph
 

Fields in com.jgraph.graph declared as ConnectionSet
protected  ConnectionSet GraphTransferable.cs
          Object that describes the connection between cells.
protected  ConnectionSet DefaultGraphModel.GraphModelEdit.connectionSet
           
 

Methods in com.jgraph.graph that return ConnectionSet
static ConnectionSet ConnectionSet.create(GraphModel m, java.lang.Object[] cells, boolean disconnect)
          Returns a connection set that represents the connection or disconnection of cells in model based on disconnect.
 ConnectionSet ConnectionSet.clone(java.util.Map map)
          Creates a new connection set based on this connection set, where the edges, and ports are mapped using map.
 ConnectionSet GraphTransferable.getConnectionSet()
          Returns the connections between cells (and possibly other, unselected cells).
 ConnectionSet GraphContext.disconnect(CellView[] cells)
          Disconnects the edges in cells from the sources and targets that are not in this context and returns a ConnectionSet that defines the disconnection.
protected  ConnectionSet DefaultGraphModel.handleConnectionSet(ConnectionSet cs)
          Applies connectionSet to the model.
 

Methods in com.jgraph.graph with parameters of type ConnectionSet
 void GraphModel.insert(java.lang.Object[] roots, ConnectionSet cs, ParentMap pm, java.util.Map attributeMap)
          Inserts the cells and connections into the model, and passes attributeMap to the views.
 void GraphModel.edit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] e)
          Applies the propertyMap and the connection changes to the model.
protected static void ConnectionSet.connect(ConnectionSet cs, java.lang.Object edge, java.lang.Object port, boolean source, boolean disconnect)
          Connect or disconnect edge from source and target in cs based on disconnect.
 void DefaultGraphModel.insert(java.lang.Object[] roots, ConnectionSet cs, ParentMap pm, java.util.Map attributeMap)
          Inserts the cells and connections into the model, and passes attributeMap to the views.
 void DefaultGraphModel.edit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] edits)
          Applies the propertyMap and the connection changes to the model.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createInsertEdit(java.lang.Object[] cells, ConnectionSet cs, ParentMap pm, java.util.Map propertyMap, java.util.Map attributeMap)
          Returns an edit that represents an insert.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createCellEdit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] edits)
          Returns an edit that represents a change.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createEdit(java.lang.Object[] inserted, java.lang.Object[] removed, java.util.Map attributes, java.util.Map properties, ConnectionSet cs, ParentMap pm)
           
protected  ConnectionSet DefaultGraphModel.handleConnectionSet(ConnectionSet cs)
          Applies connectionSet to the model.
 

Constructors in com.jgraph.graph with parameters of type ConnectionSet
GraphTransferable(java.lang.Object[] cells, ConnectionSet cs, java.util.Map attrMap, java.awt.Rectangle bounds)
          Constructs a new transferable selection for cells, csand attrMap.
DefaultGraphModel.GraphModelEdit(java.lang.Object[] removed, ConnectionSet cs, ParentMap parentMap)
          Constructs an edit that represents a remove.
DefaultGraphModel.GraphModelEdit(java.lang.Object[] inserted, ConnectionSet cs, ParentMap parentMap, java.util.Map attributeMap)
          Constructs an edit that represents an insert.
DefaultGraphModel.GraphModelEdit(ConnectionSet cs, java.util.Map propertyMap, ParentMap parentMap)
          Constructs an edit that represents a change.
DefaultGraphModel.GraphModelEdit(java.lang.Object[] inserted, java.lang.Object[] removed, ConnectionSet connectionSet, java.util.Map propertyMap, ParentMap parentMap, java.util.Map attributeMap)
          Constructs an edit record.
 

Uses of ConnectionSet in com.jgraph.plaf.basic
 

Fields in com.jgraph.plaf.basic declared as ConnectionSet
protected  ConnectionSet BasicGraphUI.RootHandle.disconnect
           
 

Methods in com.jgraph.plaf.basic with parameters of type ConnectionSet
 void BasicGraphUI.insertCells(java.lang.Object[] cells, java.util.Map viewAttributeMap, ConnectionSet cs, boolean clone, int dx, int dy)
          Insert the specified cells into the model.
protected  GraphTransferable BasicGraphUI.GraphTransferHandler.create(JGraph graph, java.lang.Object[] cells, ConnectionSet cs, java.util.Map viewAttributes, java.awt.Rectangle bounds)