Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getClasspathAttributes (0.26 sec)

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

            this.classpathAttributes = classpathAttributes;
            this.accessRules = accessRules;
        }
    
        public List<DefaultClasspathAttribute> getClasspathAttributes() {
            return classpathAttributes;
        }
    
        public List<DefaultAccessRule> getAccessRules() {
            return accessRules;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathEntry.java

         *
         * @return The classpath attributes.
         * @throws UnsupportedMethodException For Gradle versions older than 2.14, where this method is not supported.
         */
        DomainObjectSet<? extends ClasspathAttribute> getClasspathAttributes() throws UnsupportedMethodException;
    
        /**
         * Returns the access rules associated with this classpath entry.
         *
         * @return The access rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseSourceDirectory.java

         * @throws UnsupportedMethodException For Gradle versions older than 3.0, where this method is not supported.
         *
         * @since 3.0
         */
        @Override
        DomainObjectSet<? extends ClasspathAttribute> getClasspathAttributes() throws UnsupportedMethodException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top