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

All Superinterfaces:
Extendable
All Known Implementing Classes:
FeatureLocationImpl

public interface FeatureLocation
extends Extendable

Specifies where a feature is located relative to a grid.

Version:
%I%, %G%

Method Summary
 java.lang.Integer getColumn()
          Returns the value of this FeatureLocation object's column attribute.
 java.lang.Integer getRow()
          Returns the value of this FeatureLocation object's row attribute.
 void setColumn(java.lang.Integer p_column)
          Sets the column attribute.
 void setRow(java.lang.Integer p_row)
          Sets the row attribute.
 
Methods inherited from interface gov.nih.nci.mageom.domain.Extendable
getPropertySets, setPropertySets
 

Method Detail

setRow

void setRow(java.lang.Integer p_row)
Sets the row attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a FeatureLocation object.

Parameters:
p_row - The new value for row.
See Also:
getRow()

getRow

java.lang.Integer getRow()
Returns the value of this FeatureLocation object's row attribute. Description of row: row position in the Zone

Returns:
int The value of row.

setColumn

void setColumn(java.lang.Integer p_column)
Sets the column attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a FeatureLocation object.

Parameters:
p_column - The new value for column.
See Also:
getColumn()

getColumn

java.lang.Integer getColumn()
Returns the value of this FeatureLocation object's column attribute. Description of column: column position in the Zone.

Returns:
int The value of column.