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
AbsoluteBendpoint is a Bendpoint that defines its location simply as its X and Y
coordinates. It is used by bendable Connections
.
- See Also:
- Serialized Form
Method Summary |
Point |
getLocation()
Returns the location of the bendpoint relative to the connection. |
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 |
AbsoluteBendpoint
public AbsoluteBendpoint(Point p)
- Creates a new AbsoluteBendpoint at the Point p.
- Parameters:
p
- The absolute location of the bendpoint- Since:
- 2.0
AbsoluteBendpoint
public AbsoluteBendpoint(int x,
int y)
- Creates a new AbsoluteBendpoint at the Point (x,y).
- Parameters:
x
- The X coordinatey
- The Y coordinate- Since:
- 2.0
getLocation
public Point getLocation()
- Description copied from interface:
Bendpoint
- Returns the location of the bendpoint relative to the connection. The returned
value may be by reference. The caller should NOT modify the returned value.
- Specified by:
getLocation
in interface Bendpoint
- Returns:
- the location of the bendpoint relative to the Connection
- See Also:
Bendpoint.getLocation()
Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.