Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for AbstractClasspathEntry (0.28 sec)

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

            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            AbstractClasspathEntry that = (AbstractClasspathEntry) o;
            return exported == that.exported
                && Objects.equal(path, that.path)
                && Objects.equal(accessRules, that.accessRules)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

        }
    
        public void enhance(Classpath classpath) {
            for (ClasspathEntry entry : classpath.getEntries()) {
                if (entry instanceof AbstractClasspathEntry) {
                    AbstractClasspathEntry classpathEntry = (AbstractClasspathEntry) entry;
                    Map<String, Object> wtpEntries = createDeploymentAttribute(classpathEntry);
                    classpathEntry.getEntryAttributes().putAll(wtpEntries);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

        }
    
        private class EclipseDependenciesVisitor implements IdeDependencyVisitor {
    
            private final List<AbstractClasspathEntry> projects = new ArrayList<>();
            private final List<AbstractClasspathEntry> modules = new ArrayList<>();
            private final List<AbstractClasspathEntry> files = new ArrayList<>();
            private final Multimap<String, String> pathToSourceSets = collectLibraryToSourceSetMapping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    // tag::module-when-merged[]
    import org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry
    // end::module-when-merged[]
    // tag::module-before-merged[]
    // tag::module-when-merged[]
    import org.gradle.plugins.ide.eclipse.model.Classpath
    // end::module-when-merged[]
    // end::module-before-merged[]
    // tag::project-before-merged[]
    import org.gradle.plugins.ide.eclipse.model.Project
    // end::project-before-merged[]
    // tag::wtp-with-xml[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.eclipse.model.internal;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry;
    import org.gradle.plugins.ide.eclipse.model.ClasspathEntry;
    import org.gradle.plugins.ide.eclipse.model.Container;
    import org.gradle.plugins.ide.eclipse.model.EclipseClasspath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Container.java

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    
    /**
     * A container classpath entry.
     */
    public class Container extends AbstractClasspathEntry {
    
        public Container(Node node) {
            super(node);
        }
    
        public Container(String path) {
            super(path);
        }
    
        @Override
        public String getKind() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

                                    println "Checking property \${prop.name} on \${convertedClass.name}"
                                    if (convertedClass == org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry && prop.name == "exported") {
                                        return
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

    import javax.annotation.Nullable;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Common superclass for the library elements.
     */
    public abstract class AbstractLibrary extends AbstractClasspathEntry {
        private static final String ATTRIBUTE_JAVADOC_LOCATION = "javadoc_location";
    
        private FileReference sourcePath;
        private FileReference javadocPath;
        private FileReference library;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

                  implementation 'commons-io:commons-io:1.4'
                }
    
                import org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry
    
                eclipse.classpath.file.whenMerged { cp ->
                  cp.entries.each {
                    if(it instanceof AbstractClasspathEntry) {
                      //some people have workarounds in their builds and configure the component dependency,
                      //just like here:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ProjectDependency.java

    import org.gradle.api.tasks.TaskDependency;
    
    import java.util.Objects;
    
    /**
     * A classpath entry representing a project dependency.
     */
    public class ProjectDependency extends AbstractClasspathEntry {
    
        private FileReference publication;
        private FileReference publicationSourcePath;
        private FileReference publicationJavadocPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top