Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AbstractLibrary (0.32 sec)

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

                }
            }
        }
    
        private Map<String, Object> createDeploymentAttribute(ClasspathEntry entry) {
            if (entry instanceof AbstractLibrary) {
                return createDeploymentAttribute((AbstractLibrary) entry);
            } else if (entry instanceof ProjectDependency) {
                return ImmutableMap.of(AbstractClasspathEntry.COMPONENT_NON_DEPENDENCY_ATTRIBUTE, "");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

         *
         * @param reference The object to transform into a new file reference. Can be instance of File or String.
         * @return The new file reference.
         * @see AbstractLibrary#setJavadocPath(FileReference)
         * @see AbstractLibrary#setSourcePath(FileReference)
         */
        public FileReference fileReference(Object reference) {
            if (reference instanceof File) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                //and it would probably push us to add support in the tooling api to retrieve the variable mappings.
                if (entry instanceof Library) {
                    AbstractLibrary library = (AbstractLibrary) entry;
                    final File file = library.getLibrary().getFile();
                    final File source = library.getSourcePath() == null ? null : library.getSourcePath().getFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.AbstractLibrary.getJavadocPath()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractLibrary.java:0)
    Method <org.gradle.plugins.ide.eclipse.model.AbstractLibrary.getLibrary()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractLibrary.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)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.eclipse.model.AbstractLibrary.appendNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AbstractLibrary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top