Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for classpathAttributes (0.26 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            then:
            def projectDependencies = eclipseModel.children.find { it.name == projectName }.projectDependencies
            projectDependencies.collect { it.classpathAttributes.find { it.name == 'test' }?.value } == expectedTestAttributes
    
            where:
            projectName | expectedTestAttributes
            'child2'    | [ null ]
            'child5'    | ['true']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/ClasspathAttribute.java

     *
     * @see <a href="http://help.eclipse.org/mars/topic/org.eclipse.jdt.doc.isv/reference/api/org/eclipse/jdt/core/IClasspathAttribute.html">IClassAttribute Javadoc</a>
     *
     * @since 2.14
     */
    public interface ClasspathAttribute {
    
        /**
         * Returns the key of this attribute.
         *
         * @return The key of this attribute.
         */
        String getName();
    
        /**
         * Returns the value of this attribute.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. 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