Package 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
, Developer documentation: Biomaterials LIMS- Last modified
- $Date: 2008-11-27 16:33:55 +0100 (Thu, 27 Nov 2008) $
- Hibernate: class
- table="`BioWells`" lazy="true"
-
Field Summary
Fields Modifier and Type Field Description private MeasuredBioMaterialData
bioMaterial
private BioPlateData
bioPlate
private int
column
private MeasuredBioMaterialData
originalBioMaterial
private int
row
-
Constructor Summary
Constructors Constructor Description BioWellData()
-
Method Summary
Modifier and Type Method Description MeasuredBioMaterialData
getBioMaterial()
TheMeasuredBioMaterialData
used in this well.BioPlateData
getBioPlate()
The bioplate this well belongs to.int
getColumn()
The column coordinate of this well.MeasuredBioMaterialData
getOriginalBioMaterial()
TheMeasuredBioMaterialData
used in this well.int
getRow()
The row coordinate of this well.void
setBioMaterial(MeasuredBioMaterialData bioMaterial)
void
setBioPlate(BioPlateData bioPlate)
void
setColumn(int column)
void
setOriginalBioMaterial(MeasuredBioMaterialData originalBioMaterial)
void
setRow(int row)
Methods inherited from class net.sf.basedb.core.data.BasicData
equals, getId, getVersion, hashCode, setId, setVersion, toString
-
Field Details
-
bioPlate
-
row
private int row -
column
private int column -
originalBioMaterial
-
bioMaterial
-
-
Constructor Details
-
BioWellData
public BioWellData()
-
-
Method Details
-
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" cascade="all"
-
setBioPlate
-
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) -
getOriginalBioMaterial
TheMeasuredBioMaterialData
used in this well.- Since:
- 2.16
- Hibernate: many-to-one
- column="`original_biomaterial_id`" not-null="false" outer-join="false"
-
setOriginalBioMaterial
-
getBioMaterial
TheMeasuredBioMaterialData
used in this well.- Hibernate: one-to-one
- property-ref="bioWell"
-
setBioMaterial
-