Java 类org.gradle.api.tasks.Nested 实例源码

项目:Reer    文件:FindBugs.java   
/**
 * A filter specifying which bugs are reported. Replaces the {@code includeFilter} property.
 *
 * @since 2.2
 */
@Incubating
@Nested
@Optional
public TextResource getIncludeFilterConfig() {
    return includeFilterConfig;
}
项目:Reer    文件:FindBugs.java   
/**
 * A filter specifying bugs to exclude from being reported. Replaces the {@code excludeFilter} property.
 *
 * @since 2.2
 */
@Incubating
@Nested
@Optional
public TextResource getExcludeFilterConfig() {
    return excludeFilterConfig;
}
项目:Reer    文件:FindBugs.java   
/**
 * A filter specifying baseline bugs to exclude from being reported.
 */
@Incubating
@Nested
@Optional
public TextResource getExcludeBugsFilterConfig() {
    return excludeBugsFilterConfig;
}
项目:Reer    文件:GenerateBuildDashboard.java   
/**
 * The reports to be generated by this task.
 *
 * @return The reports container
 */
@Nested
@Override
public BuildDashboardReports getReports() {
    return reports;
}
项目:Reer    文件:Pmd.java   
/**
 * The reports to be generated by this task.
 */
@Nested
public final PmdReports getReports() {
    return reports;
}
项目:Reer    文件:JDepend.java   
/**
 * The reports to be generated by this task.
 */
@Nested
public final JDependReports getReports() {
    return reports;
}
项目:Reer    文件:CodeNarc.java   
/**
 * The CodeNarc configuration to use. Replaces the {@code configFile} property.
 *
 * @since 2.2
 */
@Incubating
@Nested
public TextResource getConfig() {
    return config;
}
项目:Reer    文件:CodeNarc.java   
/**
 * The reports to be generated by this task.
 */
@Nested
public CodeNarcReports getReports() {
    return reports;
}
项目:Reer    文件:Checkstyle.java   
/**
 * The Checkstyle configuration to use. Replaces the {@code configFile} property.
 *
 * @since 2.2
 */
@Incubating
@Nested
public TextResource getConfig() {
    return config;
}
项目:Reer    文件:Checkstyle.java   
/**
 * The reports to be generated by this task.
 */
@Nested
public final CheckstyleReports getReports() {
    return reports;
}
项目:Reer    文件:CoffeeScriptCompile.java   
@Nested
public CoffeeScriptCompileOptions getOptions() {
    return options;
}
项目:Reer    文件:ScalaCompile.java   
@Nested
@Override
public ScalaCompileOptions getScalaCompileOptions() {
    return (ScalaCompileOptions) super.getScalaCompileOptions();
}
项目:Reer    文件:ScalaDoc.java   
/**
 * Returns the ScalaDoc generation options.
 */
@Nested
public ScalaDocOptions getScalaDocOptions() {
    return scalaDocOptions;
}
项目:Reer    文件:GroovyCompileOptions.java   
/**
 * Returns options for running the Groovy compiler in a separate process. These options only take effect
 * if {@code fork} is set to {@code true}.
 */
@Nested
public GroovyForkOptions getForkOptions() {
    return forkOptions;
}
项目:Reer    文件:Groovydoc.java   
/**
 * Returns a HTML text to be used for overview documentation. Set to {@code null} when there is no overview text.
 */
@Nested
@Optional
public TextResource getOverviewText() {
    return overview;
}
项目:Reer    文件:JacocoReport.java   
/**
 * Returns the reports to be generated by this task.
 */
@Nested
@Override
public JacocoReportsContainer getReports() {
    return reports;
}
项目:Reer    文件:AbstractLinkTask.java   
/**
 * The platform that the linked binary will run on.
 */
@Nested
public NativePlatform getTargetPlatform() {
    return targetPlatform;
}
项目:Reer    文件:CreateStaticLibrary.java   
/**
  * The platform being targeted.
  */
@Nested
public NativePlatform getTargetPlatform() {
    return targetPlatform;
}
项目:Reer    文件:InstallExecutable.java   
/**
 * The platform describing the install target.
 */
@Nested
public NativePlatform getPlatform() {
    return platform;
}
项目:Reer    文件:HtmlDependencyReportTask.java   
@Nested
@Override
public DependencyReportContainer getReports() {
    return reports;
}
项目:Reer    文件:CompileOptions.java   
/**
 * Returns options for generating debugging information.
 */
@Nested
public DebugOptions getDebugOptions() {
    return debugOptions;
}
项目:Reer    文件:CompileOptions.java   
/**
 * Returns options for running the compiler in a child process.
 */
@Nested
public ForkOptions getForkOptions() {
    return forkOptions;
}
项目:Reer    文件:CompileOptions.java   
/**
 * Returns options for using the Ant {@code <depend>} task.
 */
@Nested
public DependOptions getDependOptions() {
    return dependOptions;
}
项目:Reer    文件:JavaCompile.java   
@Nested
protected JavaPlatform getPlatform() {
    return DefaultJavaPlatform.current();
}
项目:Reer    文件:Test.java   
/**
 * Returns test framework specific options. Make sure to call {@link #useJUnit()} or {@link #useTestNG()} before using this method.
 *
 * @return The test framework options.
 */
@Nested
// TODO:LPTR This doesn't resolve any of the nested options for the concrete subtypes
public TestFrameworkOptions getOptions() {
    return options(null);
}
项目:Reer    文件:Test.java   
/**
 * The reports that this task potentially produces.
 *
 * @return The reports that this task potentially produces
 */
@Nested
@Override
public TestTaskReports getReports() {
    return reports;
}
项目:Reer    文件:BaseScalaCompileOptions.java   
/**
 * Options for running the Scala compiler in a separate process.
 */
@Nested
public ScalaForkOptions getForkOptions() {
    return forkOptions;
}
项目:Reer    文件:BaseScalaCompileOptions.java   
@Nested
public IncrementalCompileOptions getIncrementalOptions() {
    return incrementalOptions;
}
项目:Reer    文件:PlatformScalaCompile.java   
@Nested
public ScalaPlatform getPlatform() {
    return platform;
}
项目:Reer    文件:AbstractScalaCompile.java   
/**
 * Returns the Scala compilation options.
 */
@Nested
public BaseScalaCompileOptions getScalaCompileOptions() {
    return scalaCompileOptions;
}
项目:Reer    文件:AbstractScalaCompile.java   
/**
 * Returns the Java compilation options.
 */
@Nested
public CompileOptions getOptions() {
    return compileOptions;
}
项目:Reer    文件:AbstractNativeCompileTask.java   
/**
 * The platform being targeted.
 */
@Nested
public NativePlatform getTargetPlatform() {
    return targetPlatform;
}
项目:Reer    文件:AbstractNativeSourceCompileTask.java   
/**
 * Returns the pre-compiled header to be used during compilation
 */
@Nested @Optional
public PreCompiledHeader getPreCompiledHeader() {
    return preCompiledHeader;
}
项目:Reer    文件:WindowsResourceCompile.java   
/**
 * The platform being targeted.
 */
@Nested
public NativePlatform getTargetPlatform() {
    return targetPlatform;
}
项目:Reer    文件:Assemble.java   
/**
 * The platform being targeted.
 */
@Nested
public NativePlatform getTargetPlatform() {
    return targetPlatform;
}
项目:Reer    文件:NestedBeanPropertyAnnotationHandler.java   
@Override
public Class<? extends Annotation> getAnnotationType() {
    return Nested.class;
}
项目:gradle-capsule-plugin    文件:Capsule.java   
@Nested public RootManifest getCapsuleManifest() {
  return this.capsuleManifest;
}
项目:gradle-clojure    文件:ClojureCompile.java   
@Nested
public ClojureCompileOptions getOptions() {
  return options;
}
项目:gradle-clojure    文件:ClojureCompileOptions.java   
@Nested
public ClojureForkOptions getForkOptions() {
  return forkOptions;
}
项目:gradle-clojure    文件:ClojureCompileOptions.java   
@Nested
public ReflectionWarnings getReflectionWarnings() {
  return reflectionWarnings;
}