public interface

Point

implements Serializable
com.priint.comet.metadata.base.Point

Class Overview

Interface for points in a coordinate system.

Interface for points in a coordinate system, currently referenced in the Polygon interface resp. PolygonImpl class only, implemented in PointImpl.
Depending on the scope of the containing XML document, coordinates are either relative to the spread, page, CometGroup or element.

Summary

Public Methods
abstract double getX()

Gets the X coordinate of this point.

abstract double getY()

Gets the Y coordinate of this point.

abstract void setX(double x)

Sets the X coordinate of this point.

abstract void setY(double y)

Sets the Y coordinate of this point.

Public Methods

public abstract double getX ()

Gets the X coordinate of this point.

Gets the X coordinate of this point.

Returns
  • X coordinate of this point

public abstract double getY ()

Gets the Y coordinate of this point.

Gets the Y coordinate of this point.

Returns
  • the Y coordinate of this point

public abstract void setX (double x)

Sets the X coordinate of this point.

Sets the X coordinate of this point.

Parameters
x the X coordinate of this point

public abstract void setY (double y)

Sets the Y coordinate of this point.

Sets the Y coordinate of this point.

Parameters
y the Y coordinate of this point