Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setCompilerClasspath (0.33 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ProjectLibrary.java

        }
    
        /**
         * A set of Jar files containing compiler classes.
         */
        public Set<File> getCompilerClasspath() {
            return compilerClasspath;
        }
    
        public void setCompilerClasspath(Set<File> compilerClasspath) {
            this.compilerClasspath = compilerClasspath;
        }
    
        /**
         * A set of Jar files or directories containing compiled code.
         */
        public Set<File> getClasses() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            ProjectLibrary projectLibrary = new ProjectLibrary();
            projectLibrary.setName(name);
            projectLibrary.setType("Scala");
            projectLibrary.setCompilerClasspath(Sets.newLinkedHashSet(jars));
            return projectLibrary;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top