uk.ac.ebi.intact.model.Alias.setParentAc()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(126)

本文整理了Java中uk.ac.ebi.intact.model.Alias.setParentAc()方法的一些代码示例,展示了Alias.setParentAc()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Alias.setParentAc()方法的具体详情如下:
包路径:uk.ac.ebi.intact.model.Alias
类名称:Alias
方法名:setParentAc

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 );
}

相关文章