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

All Superinterfaces:
Extendable
All Known Implementing Classes:
CompoundMeasurementImpl

public interface CompoundMeasurement
extends Extendable

A CompoundMeasurement is a pairing of a source Compound and an amount (Measurement) of that Compound.

Version:
%I%, %G%

Method Summary
 Compound getCompound()
          Returns the value of this CompoundMeasurement object's compound attribute.
 Measurement getMeasurement()
          Returns the value of this CompoundMeasurement object's measurement attribute.
 void setCompound(Compound p_compound)
          Sets the compound attribute.
 void setMeasurement(Measurement p_measurement)
          Sets the measurement attribute.
 
Methods inherited from interface gov.nih.nci.mageom.domain.Extendable
getPropertySets, setPropertySets
 

Method Detail

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 CompoundMeasurement object.

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

getMeasurement

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

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

setCompound

void setCompound(Compound p_compound)
Sets the compound attribute. This API is currently read-only. So, calling this method does not affect the persistent state of a CompoundMeasurement object.

Parameters:
p_compound - The new value for compound.
See Also:
getCompound()

getCompound

Compound getCompound()
Returns the value of this CompoundMeasurement object's compound attribute.

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