Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for AbstractLibrary (0.2 sec)

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

     */
    public abstract class AbstractLibrary extends AbstractClasspathEntry {
        private static final String ATTRIBUTE_JAVADOC_LOCATION = "javadoc_location";
    
        private FileReference sourcePath;
        private FileReference javadocPath;
        private FileReference library;
        private ModuleVersionIdentifier moduleVersion;
    
        public AbstractLibrary(Node node, FileReferenceFactory fileReferenceFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

            }
    
            private AbstractLibrary createUnresolvedLibraryEntry(File binary, EclipseClasspath classpath, Multimap<String, String> pathToSourceSets, boolean testDependency, boolean asJavaModule) {
                return createLibraryEntry(binary, null, null, classpath, null, pathToSourceSets, testDependency, asJavaModule, false);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

    import groovy.util.Node;
    import org.gradle.plugins.ide.eclipse.model.internal.FileReferenceFactory;
    
    /**
     * A classpath entry representing a library.
     */
    public class Library extends AbstractLibrary {
        public Library(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    import org.gradle.plugins.ide.eclipse.model.internal.FileReferenceFactory;
    
    /**
     * A variable library entry.
     */
    public class Variable extends AbstractLibrary {
        public Variable(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromVariablePath((String) node.attribute("sourcepath")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.eclipse.GenerateEclipseWtpComponent
    org.gradle.plugins.ide.eclipse.GenerateEclipseWtpFacet
    org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry
    org.gradle.plugins.ide.eclipse.model.AbstractLibrary
    org.gradle.plugins.ide.eclipse.model.AccessRule
    org.gradle.plugins.ide.eclipse.model.BuildCommand
    org.gradle.plugins.ide.eclipse.model.Classpath
    org.gradle.plugins.ide.eclipse.model.EclipseClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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