Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CompositeDomainObjectSet (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        <T> NamedDomainObjectList<T> newNamedDomainObjectList(Class<T> elementType);
    
        /**
         * Creates a {@link CompositeDomainObjectSet} for managing a collection of {@link DomainObjectCollection} of the specified type.
         */
        <T> CompositeDomainObjectSet<T> newDomainObjectSet(Class<T> elementType, DomainObjectCollection<? extends T> collection);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/DefaultDomainObjectCollectionFactory.java

        }
    
        @Override
        public <T> CompositeDomainObjectSet<T> newDomainObjectSet(Class<T> elementType, DomainObjectCollection<? extends T> collection) {
            return CompositeDomainObjectSet.create(elementType, collectionCallbackActionDecorator, collection);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/CompositePublicationArtifactSet.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.internal;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.CompositeDomainObjectSet;
    import org.gradle.api.internal.DelegatingDomainObjectSet;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.file.UnionFileCollection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectSetTest.groovy

            def c1 = new DefaultDomainObjectSet<String>(String, callbackActionDecorator)
            def c2 = new DefaultDomainObjectSet<String>(String, callbackActionDecorator)
            given:
            def composite = CompositeDomainObjectSet.<String>create(String, c1, c2)
            def set = new DefaultDomainObjectSet<String>(String, composite.getStore(), callbackActionDecorator)
    
            when:
            c1.add("a")
            c1.add("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top