Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newNamedDomainObjectSet (0.26 sec)

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

        /**
         * Creates a {@link DomainObjectSet} for managing objects of the specified type.
         */
        <T> DomainObjectSet<T> newDomainObjectSet(Class<T> elementType);
    
        <T> NamedDomainObjectSet<T> newNamedDomainObjectSet(Class<T> elementType);
    
        <T> NamedDomainObjectList<T> newNamedDomainObjectList(Class<T> elementType);
    
        /**
    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

            return Cast.uncheckedCast(instantiator.newInstance(DefaultDomainObjectSet.class, elementType, collectionCallbackActionDecorator));
        }
    
        @Override
        public <T> NamedDomainObjectSet<T> newNamedDomainObjectSet(Class<T> elementType) {
            Instantiator instantiator = instantiatorFactory.decorateLenient();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
Back to top