|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.basedb.core.data.PlateCoordinate
public class PlateCoordinate
This class defines a plate coordinate, which is row and column
on a plate. A PlateCoordinate
object
is used by a PlateData
to specify the coordinates of wells.
The Serializable
interface must be implemented
because Hibernate requires it if we use it as a map key.
PlateData
,
Array LIMS - Plates overview,
Serialized FormField Summary | |
---|---|
private int |
column
The column number. |
private int |
row
The row number. |
private static long |
serialVersionUID
|
Constructor Summary | |
---|---|
PlateCoordinate()
Create new object. |
|
PlateCoordinate(int row,
int column)
Create new PlateCoordinate with the specified row and column. |
Method Summary | |
---|---|
boolean |
equals(Object o)
Check if this object is equal to another PlateCoordinateData
object. |
int |
getColumn()
Get the column number. |
int |
getRow()
Get the row number. |
int |
hashCode()
Calculate the hash code for the object. |
(package private) void |
setColumn(int column)
Set the location. |
(package private) void |
setRow(int row)
Set the row number. |
String |
toString()
Get the coordinate as [row, column] |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
private int row
private int column
Constructor Detail |
---|
PlateCoordinate()
public PlateCoordinate(int row, int column)
PlateCoordinate
with the specified row and column.
Method Detail |
---|
public final boolean equals(Object o)
PlateCoordinateData
object. They are equal if both have the same plate, row and column.
equals
in class Object
public final int hashCode()
hashCode
in class Object
public final String toString()
toString
in class Object
public int getRow()
void setRow(int row)
public int getColumn()
void setColumn(int column)
|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |