Package org.eclipse.gef.requests
Class ReconnectRequest
- java.lang.Object
-
- org.eclipse.gef.Request
-
- org.eclipse.gef.requests.LocationRequest
-
- org.eclipse.gef.requests.ReconnectRequest
-
- All Implemented Interfaces:
DropRequest,TargetRequest
public class ReconnectRequest extends LocationRequest implements DropRequest, TargetRequest
A Request to reconnect a connection.
-
-
Constructor Summary
Constructors Constructor Description ReconnectRequest()Default constructor.ReconnectRequest(java.lang.Object type)Creates a ReconnectRequest with the given type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectionEditPartgetConnectionEditPart()Returns the ConnectionEditPart to be reconnected.EditPartgetTarget()Returns the target edit part that the connection should be connected to.booleanisMovingStartAnchor()Returnstrueif the start (source) anchor is the anchor being moved.voidsetConnectionEditPart(ConnectionEditPart conn)Sets the ConnectionEditPart to be reconnected.voidsetTargetEditPart(EditPart ep)Sets the target edit part that the connection should be connected to.-
Methods inherited from class org.eclipse.gef.requests.LocationRequest
getLocation, setLocation
-
Methods inherited from class org.eclipse.gef.Request
getExtendedData, getType, setExtendedData, setType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.gef.requests.DropRequest
getLocation
-
-
-
-
Method Detail
-
getConnectionEditPart
public ConnectionEditPart getConnectionEditPart()
Returns the ConnectionEditPart to be reconnected.- Returns:
- The ConnectionEditPart to be reconnected.
-
getTarget
public EditPart getTarget()
Returns the target edit part that the connection should be connected to.- Returns:
- the target edit part
-
isMovingStartAnchor
public boolean isMovingStartAnchor()
Returnstrueif the start (source) anchor is the anchor being moved.- Returns:
- whether the start anchor is being moved
-
setConnectionEditPart
public void setConnectionEditPart(ConnectionEditPart conn)
Sets the ConnectionEditPart to be reconnected.- Parameters:
conn- The ConnectionEditPart.
-
setTargetEditPart
public void setTargetEditPart(EditPart ep)
Sets the target edit part that the connection should be connected to.- Specified by:
setTargetEditPartin interfaceTargetRequest- Parameters:
ep- the target edit part
-
-