本文整理汇总了Java中org.broadinstitute.barclay.argparser.BetaFeature类的典型用法代码示例。如果您正苦于以下问题:Java BetaFeature类的具体用法?Java BetaFeature怎么用?Java BetaFeature使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BetaFeature类属于org.broadinstitute.barclay.argparser包,在下文中一共展示了BetaFeature类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: DocWorkUnit
import org.broadinstitute.barclay.argparser.BetaFeature; //导入依赖的package包/类
/**
* @param workUnitHandler
* @param documentedFeatureAnnotation
* @param classDoc
* @param clazz
*/
public DocWorkUnit(
final DocWorkUnitHandler workUnitHandler,
final DocumentedFeature documentedFeatureAnnotation,
final ClassDoc classDoc,
final Class<?> clazz)
{
Utils.nonNull(workUnitHandler, "workUnitHandler cannot be null");
Utils.nonNull(documentedFeatureAnnotation, "DocumentedFeature annotation cannot be null");
Utils.nonNull(classDoc, "classDoc cannot be null");
Utils.nonNull(clazz, "class cannot be null");
this.name = clazz.getSimpleName();
this.documentedFeature = documentedFeatureAnnotation;
this.commandLineProperties = clazz.getAnnotation(CommandLineProgramProperties.class);
this.experimentalFeature = clazz.getAnnotation(ExperimentalFeature.class);
this.betaFeature = clazz.getAnnotation(BetaFeature.class);
this.workUnitHandler = workUnitHandler;
this.classDoc = classDoc;
this.clazz = clazz;
// summary, groupName and groupSummary can each be determined via fallback policies dictated
// by the feature handler, so delegate back to the handler to allow it to do the initialization
// once, and then cache the results so that all consumers see consistent values.
summary = workUnitHandler.getSummaryForWorkUnit(this);
groupName = workUnitHandler.getGroupNameForWorkUnit(this);
groupSummary = workUnitHandler.getGroupSummaryForWorkUnit(this);
}