Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for endProcessChildren (0.23 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

            this.logger = logger;
        }
    
        public void testArtifact(Artifact node) {}
    
        public void startProcessChildren(Artifact artifact) {}
    
        public void endProcessChildren(Artifact artifact) {}
    
        public void includeArtifact(Artifact artifact) {}
    
        public void omitForNearer(Artifact omitted, Artifact kept) {}
    
        public void omitForCycle(Artifact omitted) {}
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        int MANAGE_ARTIFACT_SCOPE = 13;
    
        int MANAGE_ARTIFACT_SYSTEM_PATH = 14;
    
        void testArtifact(Artifact node);
    
        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
        void omitForNearer(Artifact omitted, Artifact kept);
    
        void updateScope(Artifact artifact, String scope);
    
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            this.logger = logger;
        }
    
        public void testArtifact(Artifact node) {}
    
        public void startProcessChildren(Artifact artifact) {
            indent += "  ";
        }
    
        public void endProcessChildren(Artifact artifact) {
            indent = indent.substring(2);
        }
    
        public void includeArtifact(Artifact artifact) {
            logger.debug(indent + artifact + " (selected for " + artifact.getScope() + ")");
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    java.util.Set ignoredArtifacts; public void DebugResolutionListe(org.codehaus.plexus.logging.Logger); public void testArtifact(org.apache.maven.artifact.Artifact); public void startProcessChildren(org.apache.maven.artifact.Artifact); public void endProcessChildren(org.apache.maven.artifact.Artifact); public void includeArtifact(org.apache.maven.artifact.Artifact); public void omitForNearer(org.apache.maven.artifact.Artifact, org.apache.maven.artifact.Artifact); public void omitForCycle(org.apache.mav...
    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)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                        listener.startProcessChildren(node.getArtifact());
                        break;
                    case ResolutionListener.FINISH_PROCESSING_CHILDREN:
                        listener.endProcessChildren(node.getArtifact());
                        break;
                    case ResolutionListener.INCLUDE_ARTIFACT:
                        listener.includeArtifact(node.getArtifact());
                        break;
    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)
  6. 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.Set ignoredArtifacts; public void DebugResolutionListe(org.codehaus.plexus.logging.Logger); public void testArtifact(org.apache.maven.artifact.Artifact); public void startProcessChildren(org.apache.maven.artifact.Artifact); public void endProcessChildren(org.apache.maven.artifact.Artifact); public void includeArtifact(org.apache.maven.artifact.Artifact); public void omitForNearer(org.apache.maven.artifact.Artifact, org.apache.maven.artifact.Artifact); public void omitForCycle(org.apache.mav...
    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