Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setDownloadSources (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

         * <p>
         * See {@link EclipseClasspath} for an example.
         */
        public boolean isDownloadSources() {
            return downloadSources;
        }
    
        public void setDownloadSources(boolean downloadSources) {
            this.downloadSources = downloadSources;
        }
    
        /**
         * Whether to download and associate Javadoc Jars with the dependency Jars. Defaults to false.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         */
        public boolean isDownloadSources() {
            return downloadSources;
        }
    
        public void setDownloadSources(boolean downloadSources) {
            this.downloadSources = downloadSources;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top