Class AbsoluteBendpoint

java.lang.Object
org.eclipse.draw2d.geometry.Point
org.eclipse.draw2d.AbsoluteBendpoint
All Implemented Interfaces:
Serializable, Cloneable, Bendpoint, 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:
  • Constructor Details

    • 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
  • Method Details

    • 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: