Draw2D v2.0

org.eclipse.draw2d
Class AbsoluteBendpoint

java.lang.Object
  |
  +--org.eclipse.draw2d.geometry.Point
        |
        +--org.eclipse.draw2d.AbsoluteBendpoint
All Implemented Interfaces:
Bendpoint, Cloneable, Serializable, Translatable

public class AbsoluteBendpoint
extends Point
implements Bendpoint

A Point that implements Bendpoint, used by bendable Connections.

See Also:
Serialized Form

Fields inherited from class org.eclipse.draw2d.geometry.Point
SINGLETON, x, y
 
Constructor Summary
AbsoluteBendpoint(int x, int y)
          Creates a new AbsoluteBendpoint at the Point (x,y).
AbsoluteBendpoint(Point p)
          Creates a new AbsoluteBendpoint at the Point p.
 
Method Summary
 Point getLocation()
          Returns this Point as its location.
 
Methods inherited from class org.eclipse.draw2d.geometry.Point
equals, getCopy, getDifference, getDistance, getDistance2, getDistanceOrthogonal, getNegated, getPosition, getScaled, getSWTPoint, getTranslated, getTranslated, getTranslated, getTransposed, max, min, negate, performScale, performTranslate, scale, scale, setLocation, setLocation, toString, translate, translate, translate, transpose
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AbsoluteBendpoint

public AbsoluteBendpoint(Point p)
Creates a new AbsoluteBendpoint at the Point p.
Since:
2.0

AbsoluteBendpoint

public AbsoluteBendpoint(int x,
                         int y)
Creates a new AbsoluteBendpoint at the Point (x,y).
Since:
2.0
Method Detail

getLocation

public Point getLocation()
Returns this Point as its location.
Specified by:
getLocation in interface Bendpoint
Since:
2.0

Draw2D v2.0