Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AntFileCollectionBuilder (0.42 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AntFileCollectionBuilder.java

    import org.gradle.util.internal.AntUtil;
    
    import java.io.File;
    import java.util.Collections;
    
    public class AntFileCollectionBuilder implements AntBuilderAware {
    
        private final FileCollection files;
    
        public AntFileCollectionBuilder(FileCollection files) {
            this.files = files;
        }
    
        @Override
        public Object addToAntBuilder(Object node, String childNodeName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

            new AntFileSetBuilder(getAsFileTrees()).addToAntBuilder(builder, nodeName);
        }
    
        protected void addAsResourceCollection(Object builder, String nodeName) {
            new AntFileCollectionBuilder(this).addToAntBuilder(builder, nodeName);
        }
    
        /**
         * Returns this collection as a set of {@link DirectoryFileTree} instance. These are used to map to Ant types.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top