本文整理了Java中uk.ac.ebi.intact.model.Alias.setParentAc()
方法的一些代码示例,展示了Alias.setParentAc()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Alias.setParentAc()
方法的具体详情如下:
包路径:uk.ac.ebi.intact.model.Alias
类名称:Alias
方法名:setParentAc
暂无
代码示例来源:origin: uk.ac.ebi.intact.core/intact-core-readonly
/**
* Create a new Alias for the given Annotated object
*
* @param annotatedObject the object to which we'll add a new Alias
* @param cvAliasType the CvAliasType (may be null)
* @param name the name of the alias (namy be null)
*
* @see uk.ac.ebi.intact.model.CvAliasType
* @see uk.ac.ebi.intact.model.AnnotatedObject
*/
public Alias( AnnotatedObject annotatedObject, CvAliasType cvAliasType, String name ) {
super();
setParentAc( annotatedObject.getAc() );
setCvAliasType( cvAliasType );
setName( name );
}
代码示例来源:origin: uk.ac.ebi.intact.core/intact-core
/**
* Create a new Alias for the given Annotated object
*
* @param annotatedObject the object to which we'll add a new Alias
* @param cvAliasType the CvAliasType (may be null)
* @param name the name of the alias (namy be null)
*
* @see uk.ac.ebi.intact.model.CvAliasType
* @see uk.ac.ebi.intact.model.AnnotatedObject
*/
public Alias( AnnotatedObject annotatedObject, CvAliasType cvAliasType, String name ) {
super();
setParentAc( annotatedObject.getAc() );
setCvAliasType( cvAliasType );
setName( name );
}
代码示例来源:origin: uk.ac.ebi.intact/intact-core
/**
* Create a new Alias for the given Annotated object
*
* @param anOwner The institution owning this Alias
* @param annotatedObject the object to which we'll add a new Alias
* @param cvAliasType the CvAliasType (may be null)
* @param name the name of the alias (namy be null)
*
* @see uk.ac.ebi.intact.model.CvAliasType
* @see uk.ac.ebi.intact.model.AnnotatedObject
*/
public Alias( Institution anOwner, AnnotatedObject annotatedObject, CvAliasType cvAliasType, String name ) {
setOwner( anOwner );
setParentAc( annotatedObject.getAc() );
setCvAliasType( cvAliasType );
setName( name );
}
内容来源于网络,如有侵权,请联系作者删除!