Class BioAssayDimensionValueObject
- java.lang.Object
-
- ubic.gemma.model.common.IdentifiableValueObject<BioAssayDimension>
-
- ubic.gemma.model.expression.bioAssayData.BioAssayDimensionValueObject
-
- All Implemented Interfaces:
Serializable
,Identifiable
public class BioAssayDimensionValueObject extends IdentifiableValueObject<BioAssayDimension>
- Author:
- Paul
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class ubic.gemma.model.common.IdentifiableValueObject
id
-
-
Constructor Summary
Constructors Constructor Description BioAssayDimensionValueObject()
Required when using the class as a spring bean.BioAssayDimensionValueObject(Long id)
Do not use this constructor unless this represents a subset of a persistent BioAssayDimension.BioAssayDimensionValueObject(BioAssayDimension entity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addBioAssays(List<BioAssayValueObject> bvos)
void
clearBioAssays()
List<BioAssayValueObject>
getBioAssays()
String
getDescription()
boolean
getIsSubset()
String
getName()
BioAssayDimensionValueObject
getSourceBioAssayDimension()
boolean
isReordered()
void
reorder(List<BioAssayValueObject> newOrdering)
void
setDescription(String description)
void
setIsSubset(boolean isSubset)
void
setName(String name)
void
setSourceBioAssayDimension(BioAssayDimensionValueObject source)
String
toString()
-
Methods inherited from class ubic.gemma.model.common.IdentifiableValueObject
getId, setId
-
-
-
-
Constructor Detail
-
BioAssayDimensionValueObject
public BioAssayDimensionValueObject()
Required when using the class as a spring bean.
-
BioAssayDimensionValueObject
public BioAssayDimensionValueObject(Long id)
Do not use this constructor unless this represents a subset of a persistent BioAssayDimension.- Parameters:
id
- id
-
BioAssayDimensionValueObject
public BioAssayDimensionValueObject(BioAssayDimension entity)
- Parameters:
entity
- to be converted
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classIdentifiableValueObject<BioAssayDimension>
-
getBioAssays
public List<BioAssayValueObject> getBioAssays()
-
clearBioAssays
public void clearBioAssays()
-
addBioAssays
public void addBioAssays(List<BioAssayValueObject> bvos)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getIsSubset
public boolean getIsSubset()
-
setIsSubset
public void setIsSubset(boolean isSubset)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getSourceBioAssayDimension
public BioAssayDimensionValueObject getSourceBioAssayDimension()
- Returns:
- the original source. If this is reordered or a subset, the return value will not be.
-
setSourceBioAssayDimension
public void setSourceBioAssayDimension(BioAssayDimensionValueObject source)
-
isReordered
public boolean isReordered()
-
reorder
public void reorder(List<BioAssayValueObject> newOrdering)
-
-