Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isChildOfRootNode (0.26 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            // provide defaults to children, but should override transitives).
            // We can do this by calling isChildOfRootNode on the current node.
            if ((artifact.getVersion() != null)
                    && (!node.isChildOfRootNode() || node.getArtifact().getVersion() == null)) {
                fireEvent(ResolutionListener.MANAGE_ARTIFACT_VERSION, listeners, node, artifact);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

        }
    
        /**
         * Test whether the node is direct or transitive dependency.
         *
         * @return whether the node is direct or transitive dependency
         */
        public boolean isChildOfRootNode() {
            return parent != null && parent.parent == null;
        }
    
        public Iterator<ResolutionNode> getChildrenIterator() {
            return children.iterator();
        }
    
        public int getDepth() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    java.util.List getDependencyTrail() throws org.apache.maven.artifact.versioning.OverConstrainedVersi; private java.util.List getTrail() throws org.apache.maven.artifact.versioning.OverConstrainedVersi; public boolean isResolved(); public boolean isChildOfRootNode(); public java.util.Iterator getChildrenIterator(); public int getDepth(); public java.util.List getRemoteRepositorie(); public boolean isActive(); public void enable(); public void disable(); public boolean filterTrail(filter.ArtifactFilter)...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    java.util.List getDependencyTrail() throws org.apache.maven.artifact.versioning.OverConstrainedVersi; private java.util.List getTrail() throws org.apache.maven.artifact.versioning.OverConstrainedVersi; public boolean isResolved(); public boolean isChildOfRootNode(); public java.util.Iterator getChildrenIterator(); public int getDepth(); public java.util.List getRemoteRepositorie(); public boolean isActive(); public void enable(); public void disable(); public boolean filterTrail(filter.ArtifactFilter)...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
Back to top