Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getJavaSourceSettings (0.14 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

        }
    
        public void setBuildCommands(List<DefaultEclipseBuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        public DefaultEclipseJavaSourceSettings getJavaSourceSettings() {
            return javaSourceSettings;
        }
    
        public void setJavaSourceSettings(DefaultEclipseJavaSourceSettings javaSourceSettings) {
            this.javaSourceSettings = javaSourceSettings;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

         * @throws UnsupportedMethodException For Gradle versions older than 2.10, where this method is not supported.
         * @since 2.10
         */
        @Nullable
        EclipseJavaSourceSettings getJavaSourceSettings() throws UnsupportedMethodException;
    
        /**
         * The gradle project that is associated with this project.
         * Typically, a single Eclipse project corresponds to a single gradle project.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top