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
,NoAutoUnlinkAnyToAny
This class holds information about a bio well on a bio plate.
- Version:
- 2.10
- Author:
- Martin
- See Also:
- Last modified
- $Date: 2008-11-27 16:33:55 +0100 (Thu, 27 Nov 2008) $
- Hibernate: class
- table="`BioWells`" lazy="true"
-
Field Summary
Modifier and TypeFieldDescriptionprivate MeasuredBioMaterialData
private BioPlateData
private int
private MeasuredBioMaterialData
private int
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionTheMeasuredBioMaterialData
used in this well.The bioplate this well belongs to.int
The column coordinate of this well.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:
- 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
-