/**
* Gets all the biomaterials (e.g. union of sources, samples, extracts, labeled extracts).
* This is currently private, as it is only used in hibernate queries. If in the future
* client code needs to access it, a wrapper method should be added that wraps this in
* an unmodifiable set, to assure that modifications are only made to the underlying
* source, sample, etc, collection.
*
* @return the biomaterials
*/
@OneToMany(mappedBy = "experiment", fetch = FetchType.LAZY)
@Filter(name = SECURITY_FILTER_NAME, condition = BIOMATERIALS_ALIAS_FILTER)
@SuppressWarnings({"unused", "PMD.UnusedPrivateMethod" })
private Set<AbstractBioMaterial> getBiomaterials() {
return this.biomaterials;
}
Experiment.java 文件源码
java
阅读 40
收藏 0
点赞 0
评论 0
项目:caarray
作者:
评论列表
文章目录