|
Eclipse GEF 2.1 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConnectionEditPart | |
org.eclipse.gef | All interfaces, base types, and the plugin class are here. |
org.eclipse.gef.editparts | This package contains abstract implementation of the EditPart interface. |
org.eclipse.gef.handles | This package provide several common handle implementations. |
org.eclipse.gef.requests | This package contains the common Request types used by the provided tools and edit policies. |
org.eclipse.gef.tools | This package provides several tool implementations. |
Uses of ConnectionEditPart in org.eclipse.gef |
Methods in org.eclipse.gef with parameters of type ConnectionEditPart | |
void |
NodeListener.removingSourceConnection(ConnectionEditPart connection,
int index)
Called prior to removing the connection from its source node. |
void |
NodeListener.removingTargetConnection(ConnectionEditPart connection,
int index)
Called prior to removing the connection from its target node. |
void |
NodeListener.sourceConnectionAdded(ConnectionEditPart connection,
int index)
Called after the connection has been added to its source node. |
void |
NodeListener.targetConnectionAdded(ConnectionEditPart connection,
int index)
Called after the connection has been added to its target node. |
ConnectionAnchor |
NodeEditPart.getSourceConnectionAnchor(ConnectionEditPart connection)
Returns the ConnectionAnchor for the specified source connection.
|
ConnectionAnchor |
NodeEditPart.getTargetConnectionAnchor(ConnectionEditPart connection)
Returns the ConnectionAnchor for the specified target connection.
|
Uses of ConnectionEditPart in org.eclipse.gef.editparts |
Classes in org.eclipse.gef.editparts that implement ConnectionEditPart | |
class |
AbstractConnectionEditPart
The base implementation for ConnectionEditPart . |
Methods in org.eclipse.gef.editparts that return ConnectionEditPart | |
protected ConnectionEditPart |
AbstractGraphicalEditPart.createConnection(Object model)
Creates a ConnectionEditPart for the given
model. |
protected ConnectionEditPart |
AbstractGraphicalEditPart.createOrFindConnection(Object model)
Searches for an existing ConnectionEditPart in the Viewer's EditPart registry and returns it if one is found.
|
Methods in org.eclipse.gef.editparts with parameters of type ConnectionEditPart | |
protected void |
AbstractGraphicalEditPart.addSourceConnection(ConnectionEditPart connection,
int index)
Adds a source ConnectionEditPart at the specified index. |
protected void |
AbstractGraphicalEditPart.addTargetConnection(ConnectionEditPart connection,
int index)
Adds a target ConnectionEditPart at the specified index. |
protected void |
AbstractGraphicalEditPart.fireRemovingSourceConnection(ConnectionEditPart connection,
int index)
Notifies listeners that a source connection has been removed. |
protected void |
AbstractGraphicalEditPart.fireRemovingTargetConnection(ConnectionEditPart connection,
int index)
Notifies listeners that a target connection has been removed. |
protected void |
AbstractGraphicalEditPart.fireSourceConnectionAdded(ConnectionEditPart connection,
int index)
Notifies listeners that a source connection has been added. |
protected void |
AbstractGraphicalEditPart.fireTargetConnectionAdded(ConnectionEditPart connection,
int index)
Notifies listeners that a target connection has been added. |
protected void |
AbstractGraphicalEditPart.primAddSourceConnection(ConnectionEditPart connection,
int index)
Adds the specified source ConnectionEditPart at an index. |
protected void |
AbstractGraphicalEditPart.primAddTargetConnection(ConnectionEditPart connection,
int index)
Adds the specified target ConnectionEditPart at an index. |
protected void |
AbstractGraphicalEditPart.primRemoveSourceConnection(ConnectionEditPart connection)
Removes the specified source ConnectionEditPart from the AbstractGraphicalEditPart.sourceConnections List. |
protected void |
AbstractGraphicalEditPart.primRemoveTargetConnection(ConnectionEditPart connection)
Removes the specified target ConnectionEditPart from the AbstractGraphicalEditPart.targetConnections List. |
protected void |
AbstractGraphicalEditPart.removeSourceConnection(ConnectionEditPart connection)
Removes the given connection for which this EditPart is the source. |
protected void |
AbstractGraphicalEditPart.removeTargetConnection(ConnectionEditPart connection)
Removes the given connection for which this EditPart is the target. |
protected void |
AbstractGraphicalEditPart.reorderSourceConnection(ConnectionEditPart connection,
int index)
Moves a source ConnectionEditPart into a lower index than it currently
occupies. |
protected void |
AbstractGraphicalEditPart.reorderTargetConnection(ConnectionEditPart connection,
int index)
Moves a target ConnectionEditPart into a lower index than it currently
occupies. |
Uses of ConnectionEditPart in org.eclipse.gef.handles |
Constructors in org.eclipse.gef.handles with parameters of type ConnectionEditPart | |
ConnectionStartHandle(ConnectionEditPart owner)
Creates a new ConnectionStartHandle, sets its owner to owner ,
and sets its locator to a ConnectionLocator . |
|
ConnectionStartHandle(ConnectionEditPart owner,
boolean fixed)
Creates a new ConnectionStartHandle and sets its owner to owner .
|
|
ConnectionEndHandle(ConnectionEditPart owner)
Creates a new ConnectionEndHandle, sets its owner to owner ,
and sets its locator to a ConnectionLocator . |
|
ConnectionEndHandle(ConnectionEditPart owner,
boolean fixed)
Creates a new ConnectionEndHandle with its owner set to owner .
|
|
BendpointMoveHandle(ConnectionEditPart owner,
int index)
Creates a new BendpointMoveHandle, sets its owner to owner
and its index to index , and sets its locator to a new
BendpointLocator . |
|
BendpointMoveHandle(ConnectionEditPart owner,
int index,
Locator locator)
Creates a new BendpointMoveHandle and sets its owner to owner ,
sets its index to index , and sets its locator to
locator . |
|
BendpointCreationHandle(ConnectionEditPart owner,
int index)
Creates a new BendpointCreationHandle, sets its owner to owner
and its index to index , and sets its locator to a new
MidpointLocator . |
|
BendpointCreationHandle(ConnectionEditPart owner,
int index,
Locator locator)
Creates a new BendpointCreationHandle and sets its owner to owner , sets its index to index , and
sets its locator to locator . |
Uses of ConnectionEditPart in org.eclipse.gef.requests |
Methods in org.eclipse.gef.requests that return ConnectionEditPart | |
ConnectionEditPart |
ReconnectRequest.getConnectionEditPart()
Returns the ConnectionEditPart to be reconnected. |
ConnectionEditPart |
BendpointRequest.getSource()
Returns the ConnectionEditPart that the bendpoint belongs to. |
Methods in org.eclipse.gef.requests with parameters of type ConnectionEditPart | |
void |
ReconnectRequest.setConnectionEditPart(ConnectionEditPart conn)
Sets the ConnectionEditPart to be reconnected. |
void |
BendpointRequest.setSource(ConnectionEditPart s)
Sets the ConnectionEditPart the bendpoint belongs to. |
Uses of ConnectionEditPart in org.eclipse.gef.tools |
Methods in org.eclipse.gef.tools that return ConnectionEditPart | |
protected ConnectionEditPart |
ConnectionEndpointTracker.getConnectionEditPart()
Returns the ConnectionEditPart. |
protected ConnectionEditPart |
ConnectionBendpointTracker.getConnectionEditPart()
Returns the connection editpart on which the tracker operates. |
Methods in org.eclipse.gef.tools with parameters of type ConnectionEditPart | |
void |
ConnectionEndpointTracker.setConnectionEditPart(ConnectionEditPart cep)
Sets the connection edit part that is being reconnected. |
void |
ConnectionBendpointTracker.setConnectionEditPart(ConnectionEditPart cep)
Sets the connection editpart being operated on. |
Constructors in org.eclipse.gef.tools with parameters of type ConnectionEditPart | |
ConnectionEndpointTracker(ConnectionEditPart cep)
Constructs a new ConnectionEndpointTracker for the given ConnectionEditPart. |
|
ConnectionBendpointTracker(ConnectionEditPart editpart,
int i)
Constructs a tracker for the given connection and index. |
|
Eclipse GEF 2.1 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |