Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCompilerOutput (0.25 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaModule.java

        IdeaProject getProject();
    
        /**
         * Returns information about idea compiler output (output dirs, inheritance of output dir, etc.)
         *
         * @since 1.0-milestone-5
         */
        IdeaCompilerOutput getCompilerOutput();
    
        /**
         * dependencies of this module (i.e. module dependencies, library dependencies, etc.)
         *
         * @return dependencies
         * @since 1.0-milestone-5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/IsolatedIdeaModuleInternal.java

        }
    
        public String getJdkName() {
            return jdkName;
        }
    
        public void setJdkName(String jdkName) {
            this.jdkName = jdkName;
        }
    
        public DefaultIdeaCompilerOutput getCompilerOutput() {
            return compilerOutput;
        }
    
        public void setCompilerOutput(DefaultIdeaCompilerOutput compilerOutput) {
            this.compilerOutput = compilerOutput;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaModule.java

        }
    
        public DefaultIdeaModule setGradleProject(DefaultGradleProject gradleProject) {
            this.gradleProject = gradleProject;
            return this;
        }
    
        public IdeaCompilerOutput getCompilerOutput() {
            return compilerOutput;
        }
    
        public DefaultIdeaModule setCompilerOutput(IdeaCompilerOutput compilerOutput) {
            this.compilerOutput = compilerOutput;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeIdeaModelBuilder.java

                    .setContentRoots(Collections.singletonList(isolatedIdeaModule.getContentRoot()))
                    .setJdkName(isolatedIdeaModule.getJdkName())
                    .setCompilerOutput(isolatedIdeaModule.getCompilerOutput());
    
                boolean javaExtensionAvailableOnModule = isolatedIdeaModule.getJavaSourceCompatibility() != null
                    || isolatedIdeaModule.getJavaTargetCompatibility() != null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top