|
org.eclipse.draw2d
Class AbsoluteBendpoint
java.lang.Object
org.eclipse.draw2d.geometry.Point
org.eclipse.draw2d.AbsoluteBendpoint
-
All Implemented Interfaces:
-
Bendpoint, java.lang.Cloneable, java.io.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,
hashCode,
max,
min,
negate,
performScale,
performTranslate,
preciseX,
preciseY,
scale,
scale,
setLocation,
setLocation,
toString,
translate,
translate,
translate,
transpose
|
Methods inherited from class java.lang.Object
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
|
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 coordinate -
y - 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, 2007. All Rights Reserved.
|
|