org.gradle.api.tasks.Nested.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(178)

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

Nested.<init>介绍

暂无

代码示例

代码示例来源:origin: uber/okbuck

  1. @Nested public OkBuckExtension okBuckExtension;
  2. @Nested public KotlinExtension kotlinExtension;
  3. @Nested public ScalaExtension scalaExtension;

代码示例来源:origin: blox/blox

  1. @Nested private List<SwaggerFilter> filters = new ArrayList<>();

代码示例来源:origin: gradle.plugin.com.fizzed/rocker-gradle-plugin

  1. /**
  2. * @return the config
  3. */
  4. @Nested
  5. public RockerConfiguration getRockerProjectConfig() {
  6. return rockerProjectConfig;
  7. }

代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin

  1. /**
  2. * Returns the gosudoc generation options.
  3. * @return the gosudoc options
  4. */
  5. @Nested
  6. public GosuDocOptions getGosuDocOptions() {
  7. return _gosuDocOptions;
  8. }

代码示例来源:origin: com.android.tools.build/gradle-core

  1. @SuppressWarnings("unused")
  2. @Nested
  3. public ExternalNativeJsonGenerator getExternalNativeJsonGenerator() {
  4. return generator;
  5. }

代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin

  1. /**
  2. * @return options for running the Gosu compiler in a separate process. These options only take effect
  3. * if {@code fork} is set to {@code true}.
  4. */
  5. @Nested
  6. public ForkOptions getForkOptions() {
  7. return forkOptions;
  8. }

代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin

  1. /**
  2. * @return Gosu-specific compilation options.
  3. */
  4. @Nested
  5. public GosuCompileOptions getGosuOptions() {
  6. return _gosuCompileOptions;
  7. }

代码示例来源:origin: gradle.plugin.com.github.gradle-guides/gradle-site-plugin

  1. /**
  2. * Returns the custom data to be used in the generated web page.
  3. *
  4. * @return The custom data.
  5. */
  6. @Nested
  7. public CustomData getCustomData() {
  8. return customData;
  9. }

代码示例来源:origin: org.gosu-lang.gosu/gradle-gosu-plugin

  1. /**
  2. * @return Options for running the gosudoc generator in a separate process.
  3. */
  4. @Nested
  5. public ForkOptions getForkOptions() {
  6. return forkOptions;
  7. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. /**
  2. * This will call the property {@code "jib"} so that it is the same name as the extension. This
  3. * way, the user would see error messages for missing configuration with the prefix {@code jib.}.
  4. *
  5. * @return the {@link JibExtension}.
  6. */
  7. @Nested
  8. @Nullable
  9. public JibExtension getJib() {
  10. return jibExtension;
  11. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. @Nested
  2. @Optional
  3. public AuthParameters getAuth() {
  4. // System properties are handled in ConfigurationPropertyValidator
  5. return auth;
  6. }

代码示例来源:origin: com.android.tools.build/gradle-core

  1. @Nested
  2. @Optional
  3. public SigningConfig getSigningConfig() {
  4. return signingConfig;
  5. }

代码示例来源:origin: com.android.tools.build/gradle-core

  1. @Nested
  2. @Optional
  3. public CoreSigningConfig getSigningConfig() {
  4. return signingConfig;
  5. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. @Nested
  2. @Optional
  3. public ExtraDirectoryParameters getExtraDirectory() {
  4. return extraDirectory;
  5. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. @Nested
  2. @Optional
  3. public AuthParameters getAuth() {
  4. // System properties are handled in ConfigurationPropertyValidator
  5. return auth;
  6. }

代码示例来源:origin: com.android.tools.build/gradle-core

  1. @Nested
  2. @Optional
  3. public SigningConfig getSigningConfig() {
  4. return signingConfig;
  5. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. @Nested
  2. @Optional
  3. public BaseImageParameters getFrom() {
  4. return from;
  5. }

代码示例来源:origin: gradle.plugin.com.google.cloud.tools/jib-gradle-plugin

  1. @Nested
  2. @Optional
  3. public TargetImageParameters getTo() {
  4. return to;
  5. }

代码示例来源:origin: gradle.plugin.com.github.spotbugs/gradlePlugin

  1. /**
  2. * A filter specifying baseline bugs to exclude from being reported.
  3. *
  4. * @return filter specifying baseline bugs to exclude from being reported
  5. */
  6. @Incubating
  7. @Nested
  8. @Optional
  9. public TextResource getExcludeBugsFilterConfig() {
  10. return excludeBugsFilterConfig;
  11. }

代码示例来源:origin: gradle.plugin.com.github.spotbugs/spotbugs-gradle-plugin

  1. /**
  2. * A filter specifying baseline bugs to exclude from being reported.
  3. *
  4. * @return filter specifying baseline bugs to exclude from being reported
  5. */
  6. @Incubating
  7. @Nested
  8. @Optional
  9. public TextResource getExcludeBugsFilterConfig() {
  10. return excludeBugsFilterConfig;
  11. }

相关文章

Nested类方法