2.17.2: 2011-06-17

net.sf.basedb.core.data
Class BioWellData

java.lang.Object
  extended by net.sf.basedb.core.data.BasicData
      extended by 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"

Field Summary
private  MeasuredBioMaterialData bioMaterial
           
private  BioPlateData bioPlate
           
private  int column
           
private  MeasuredBioMaterialData originalBioMaterial
           
private  int row
           
 
Constructor Summary
BioWellData()
           
 
Method Summary
 MeasuredBioMaterialData getBioMaterial()
          The MeasuredBioMaterialData used in this well.
 BioPlateData getBioPlate()
          The bioplate this well belongs to.
 int getColumn()
          The column coordinate of this well.
 MeasuredBioMaterialData getOriginalBioMaterial()
          The MeasuredBioMaterialData 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
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

bioPlate

private BioPlateData bioPlate

row

private int row

column

private int column

originalBioMaterial

private MeasuredBioMaterialData originalBioMaterial

bioMaterial

private MeasuredBioMaterialData bioMaterial
Constructor Detail

BioWellData

public BioWellData()
Method Detail

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" cascade="all"

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)

getOriginalBioMaterial

public MeasuredBioMaterialData getOriginalBioMaterial()
The MeasuredBioMaterialData used in this well.

Since:
2.16
Hibernate: many-to-one
column="`original_biomaterial_id`" not-null="false" outer-join="false"

setOriginalBioMaterial

public void setOriginalBioMaterial(MeasuredBioMaterialData originalBioMaterial)

getBioMaterial

public MeasuredBioMaterialData getBioMaterial()
The MeasuredBioMaterialData used in this well.

Hibernate: one-to-one
property-ref="bioWell"

setBioMaterial

public void setBioMaterial(MeasuredBioMaterialData bioMaterial)

2.17.2: 2011-06-17