Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for projectModels (0.12 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Launchable.java

     * to either {@link org.gradle.tooling.BuildLauncher#forTasks(Iterable)} or {@link org.gradle.tooling.BuildLauncher#forLaunchables(Iterable)}.</p>
     *
     * @since 1.12
     */
    public interface Launchable extends ProjectModel {
        /**
         * Returns the identifier for the Gradle project that this model originated from.
         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/GradleProject.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents a Gradle project.
     *
     * @since 1.0-milestone-5
     */
    public interface GradleProject extends HierarchicalElement, BuildableElement, ProjectModel {
        /**
         * Returns the identifier for this Gradle project.
         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
         * {@inheritDoc}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top