gov.nih.nci.mageom.domain.DesignElement
Interface Position

All Superinterfaces:
Extendable
All Known Implementing Classes:
PositionImpl

public interface Position
extends Extendable

Specifies a position on an array.

Version:
%I%, %G%

Method Summary
 DistanceUnit getDistanceUnit()
          Returns the value of this Position object's distanceUnit attribute.
 java.lang.Float getX()
          Returns the value of this Position object's x attribute.
 java.lang.Float getY()
          Returns the value of this Position object's y attribute.
 void setDistanceUnit(DistanceUnit p_distanceUnit)
          Sets the distanceUnit attribute.
 void setX(java.lang.Float p_x)
          Sets the x attribute.
 void setY(java.lang.Float p_y)
          Sets the y attribute.
 
Methods inherited from interface gov.nih.nci.mageom.domain.Extendable
getPropertySets, setPropertySets
 

Method Detail

setX

void setX(java.lang.Float p_x)
Sets the x attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a Position object.

Parameters:
p_x - The new value for x.
See Also:
getX()

getX

java.lang.Float getX()
Returns the value of this Position object's x attribute. Description of x: The horizontal distance from the upper left corner of the array.

Returns:
float The value of x.

setY

void setY(java.lang.Float p_y)
Sets the y attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a Position object.

Parameters:
p_y - The new value for y.
See Also:
getY()

getY

java.lang.Float getY()
Returns the value of this Position object's y attribute. Description of y: The vertical distance from the upper left corner of the array.

Returns:
float The value of y.

setDistanceUnit

void setDistanceUnit(DistanceUnit p_distanceUnit)
Sets the distanceUnit attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a Position object.

Parameters:
p_distanceUnit - The new value for distanceUnit.
See Also:
getDistanceUnit()

getDistanceUnit

DistanceUnit getDistanceUnit()
Returns the value of this Position object's distanceUnit attribute.

Returns:
gov.nih.nci.mageom.bean.Measurement.DistanceUnit The value of distanceUnit.
See Also:
DistanceUnit