gov.nih.nci.mageom.domain.BioMaterial
Interface BioMaterialMeasurement

All Superinterfaces:
Extendable
All Known Implementing Classes:
BioMaterialMeasurementImpl

public interface BioMaterialMeasurement
extends Extendable

A BioMaterialMeasurement is a pairing of a source BioMaterial and an amount (Measurement) of that BioMaterial.

Version:
%I%, %G%

Method Summary
 BioMaterial getBioMaterial()
          Returns the value of this BioMaterialMeasurement object's bioMaterial attribute.
 Measurement getMeasurement()
          Returns the value of this BioMaterialMeasurement object's measurement attribute.
 void setBioMaterial(BioMaterial p_bioMaterial)
          Sets the bioMaterial attribute.
 void setMeasurement(Measurement p_measurement)
          Sets the measurement attribute.
 
Methods inherited from interface gov.nih.nci.mageom.domain.Extendable
getPropertySets, setPropertySets
 

Method Detail

setBioMaterial

void setBioMaterial(BioMaterial p_bioMaterial)
Sets the bioMaterial attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a BioMaterialMeasurement object.

Parameters:
p_bioMaterial - The new value for bioMaterial.
See Also:
getBioMaterial()

getBioMaterial

BioMaterial getBioMaterial()
Returns the value of this BioMaterialMeasurement object's bioMaterial attribute.

Returns:
gov.nih.nci.mageom.bean.BioMaterial.BioMaterial The value of bioMaterial.
See Also:
BioMaterial

setMeasurement

void setMeasurement(Measurement p_measurement)
Sets the measurement attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a BioMaterialMeasurement object.

Parameters:
p_measurement - The new value for measurement.
See Also:
getMeasurement()

getMeasurement

Measurement getMeasurement()
Returns the value of this BioMaterialMeasurement object's measurement attribute.

Returns:
gov.nih.nci.mageom.bean.Measurement.Measurement The value of measurement.
See Also:
Measurement