Draw2D v2.0

org.eclipse.draw2d
Class RelativeBendpoint

java.lang.Object
  |
  +--org.eclipse.draw2d.RelativeBendpoint
All Implemented Interfaces:
Bendpoint

public class RelativeBendpoint
extends Object
implements Bendpoint

A Bendpoint that calculates its location based on its distance from the start and end points of the Connection, as well as its weight.


Constructor Summary
RelativeBendpoint()
          Creates a new RelativeBendpoint.
RelativeBendpoint(Connection conn)
          Creates a new RelativeBendpoint and associates it with the given Connection.
 
Method Summary
protected  Connection getConnection()
          Returns the Connection this bendpoint is associated with.
 Point getLocation()
          Calculates and returns this bendpoint's new location.
 void setConnection(Connection conn)
          Sets the Connection this bendpoint should be associated with.
 void setRelativeDimensions(Dimension dim1, Dimension dim2)
          Sets the dimensions representing the x and y distances this bendpoint is from the start and end points of the connection.
 void setWeight(float w)
          Sets the weight this bendpoint should use to calculate its location.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RelativeBendpoint

public RelativeBendpoint()
Creates a new RelativeBendpoint.
Since:
2.0

RelativeBendpoint

public RelativeBendpoint(Connection conn)
Creates a new RelativeBendpoint and associates it with the given Connection.
Since:
2.0
Method Detail

getConnection

protected Connection getConnection()
Returns the Connection this bendpoint is associated with.
Since:
2.0

getLocation

public Point getLocation()
Calculates and returns this bendpoint's new location.
Specified by:
getLocation in interface Bendpoint
Since:
2.0

setConnection

public void setConnection(Connection conn)
Sets the Connection this bendpoint should be associated with.
Since:
2.0

setRelativeDimensions

public void setRelativeDimensions(Dimension dim1,
                                  Dimension dim2)
Sets the dimensions representing the x and y distances this bendpoint is from the start and end points of the connection. These dimensions are generally set once and are used in calculating the bendpoint's location.
Since:
2.0

setWeight

public void setWeight(float w)
Sets the weight this bendpoint should use to calculate its location. The weight should be between 0.0 and 1.0. A weight of 0.0 will cause the bendpoint to follow the start point, while a weight of 1.0 will cause the bendpoint to follow the end point. A weight of 0.5 (the default) will cause the bendpoint to maintain its original aspect ratio between the start and end points.
Since:
2.0

Draw2D v2.0