本文整理匯總了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);
}