Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getInheritOutputDirs (0.48 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)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * otherwise, they will be set to the directories specified by {@link #getOutputDir()} and {@link #getTestOutputDir()}.
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public Boolean getInheritOutputDirs() {
            return inheritOutputDirs;
        }
    
        public void setInheritOutputDirs(Boolean inheritOutputDirs) {
            this.inheritOutputDirs = inheritOutputDirs;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.idea.model.IdeaModule.getIml()> does not have raw return type assignable to org.gradle.api.provider.Provider in (IdeaModule.java:0)
    Method <org.gradle.plugins.ide.idea.model.IdeaModule.getInheritOutputDirs()> does not have raw return type assignable to org.gradle.api.provider.Property in (IdeaModule.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top