Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSubprojects (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public Set<Project> getSubprojects() {
            return Cast.uncheckedCast(getSubprojects(this));
        }
    
        @Override
        public Set<? extends ProjectInternal> getSubprojects(ProjectInternal referrer) {
            return getCrossProjectModelAccess().getSubprojects(referrer, this);
        }
    
        @Override
        public void subprojects(Closure configureClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the set containing the subprojects of this project.</p>
         *
         * @return The set of projects.  Returns an empty set if this project has no subprojects.
         */
        Set<Project> getSubprojects();
    
        /**
         * <p>Creates a {@link Task} with the given name and adds it to this project. Calling this method is equivalent to
         * calling {@link #task(java.util.Map, String)} with an empty options map.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top