Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getInheritOutputDirs (0.33 sec)

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

         * @see #getOutputDir()
         * @see #getTestOutputDir()
         */
        boolean getInheritOutputDirs();
    
        /**
         * directory to store module's production classes and resources.
         *
         * @return directory to store production output. non-<code>null</code> if
         *            {@link #getInheritOutputDirs()} returns <code>'false'</code>
         */
        @Nullable
        File getOutputDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModuleBuilderSupport.java

            return new DefaultIdeaCompilerOutput()
                .setInheritOutputDirs(
                    ideaModule.getInheritOutputDirs() != null
                        ? ideaModule.getInheritOutputDirs()
                        : false
                )
                .setOutputDir(ideaModule.getOutputDir())
                .setTestOutputDir(ideaModule.getTestOutputDir());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 21:25:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaCompilerOutput.java

        private boolean inheritOutputDirs;
        private File outputDir;
        private File testOutputDir;
    
        @Override
        public boolean getInheritOutputDirs() {
            return inheritOutputDirs;
        }
    
        public DefaultIdeaCompilerOutput setInheritOutputDirs(boolean inheritOutputDirs) {
            this.inheritOutputDirs = inheritOutputDirs;
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top