net.sf.basedb.core.data
Class BioWellData
java.lang.Object
net.sf.basedb.core.data.BasicData
net.sf.basedb.core.data.BioWellData
- All Implemented Interfaces:
- IdentifiableData
public class BioWellData
- extends BasicData
This class holds information about a bio well on a bio plate.
- Version:
- 2.10
- Author:
- Martin
- See Also:
BioWell
,
Biomaterials overview- Last modified
- $Date: 2008-11-27 16:33:55 +0100 (Thu, 27 Nov 2008) $
- Hibernate: class
- table="`BioWells`" lazy="true"
bioPlate
private BioPlateData bioPlate
row
private int row
column
private int column
bioMaterial
private MeasuredBioMaterialData bioMaterial
BioWellData
public BioWellData()
getBioPlate
public BioPlateData getBioPlate()
- The bioplate this well belongs to.
- See Also:
BioPlateData.getBioWells()
- Hibernate: many-to-one
- column="`bioplate_id`" not-null="true" outer-join="false" update="false"
setBioPlate
public void setBioPlate(BioPlateData bioPlate)
getRow
public int getRow()
- The row coordinate of this well.
- Hibernate: property
- column="`row`" type="int" not-null="true" update="false"
setRow
public void setRow(int row)
getColumn
public int getColumn()
- The column coordinate of this well.
- Hibernate: property
- column="`column`" type="int" not-null="true" update="false"
setColumn
public void setColumn(int column)
getBioMaterial
public MeasuredBioMaterialData getBioMaterial()
- The
MeasuredBioMaterialData
used in this well.
- Hibernate: one-to-one
- property-ref="bioWell"
setBioMaterial
void setBioMaterial(MeasuredBioMaterialData bioMaterial)