Package org.gradle.api.internal.file

Examples of org.gradle.api.internal.file.AbstractFileCollection


        }
        return false;
    }

    public FileCollection getHeaderDirs() {
        return new AbstractFileCollection() {
            public String getDisplayName() {
                return String.format("Headers for %s", getName());
            }

            public Set<File> getFiles() {
View Full Code Here


        private LanguageSourceSetNativeDependencySet(HeaderExportingSourceSet sourceSet) {
            this.sourceSet = sourceSet;
        }

        public FileCollection getIncludeRoots() {
            return new AbstractFileCollection() {
                @Override
                public String getDisplayName() {
                    return "Include roots of " + sourceSet.getName();
                }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.file.AbstractFileCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.