Class ScriptApplicationStarted_1_0

java.lang.Object
com.gradle.scan.eventmodel.gradle.ScriptApplicationStarted_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
Direct Known Subclasses:
ScriptApplicationStarted_1_1

@GradleVersion(since="4.0") @PluginVersion(since="1.9", until="3.18") public class ScriptApplicationStarted_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
An EventData that is published when applying a script has started.

Zero or more ScriptApplicationStarted_1_0 events may be published.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") String
    The build path of the target.
    final @Nullable("when not applied from file") FileRef_1_0
    The details about the file from where the script was applied.
    final long
    The id of the script application activity.
    final @Nullable("when the target is not a project") String
    The fully qualified name of the project that the script is applied to.
    final @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") String
    The target of the script.
    final @Nullable("when not applied from URI") String
    The uri from where the script was applied.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ScriptApplicationStarted_1_0(long id, @Nullable String targetType, @Nullable String targetPath, @Nullable String buildPath, @Nullable FileRef_1_0 file, @Nullable String uri)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • id

      public final long id
      The id of the script application activity.
    • targetType

      @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") public final @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") String targetType
      The target of the script.
    • targetPath

      @Nullable("when the target is not a project") public final @Nullable("when the target is not a project") String targetPath
      The fully qualified name of the project that the script is applied to.
    • buildPath

      @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") public final @Nullable("when the target is an arbitrary object, i.e. not a known type like project, gradle, settings, etc.") String buildPath
      The build path of the target.
    • file

      @Nullable("when not applied from file") public final @Nullable("when not applied from file") FileRef_1_0 file
      The details about the file from where the script was applied.
    • uri

      @Nullable("when not applied from URI") public final @Nullable("when not applied from URI") String uri
      The uri from where the script was applied.
  • Constructor Details

    • ScriptApplicationStarted_1_0

      public ScriptApplicationStarted_1_0(long id, @Nullable @Nullable String targetType, @Nullable @Nullable String targetPath, @Nullable @Nullable String buildPath, @Nullable @Nullable FileRef_1_0 file, @Nullable @Nullable String uri)
  • Method Details