Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setHhh (5.25 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                        MetadataGraphVertex targetNode = e.getTarget();
                        targetNode.getMd().setArtifactScope(e.getScope());
                        targetNode.getMd().setWhy(e.getSource().getMd().toString());
                        visit(targetNode);
                    }
                }
            }
            // -----------------------------------------------------------------------
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        }
    
        public void setArtifactUri(String artifactUri) {
            this.artifactUri = artifactUri;
        }
    
        public String getWhy() {
            return why;
        }
    
        public void setWhy(String why) {
            this.why = why;
        }
    
        public String getError() {
            return error;
        }
    
        public void setError(String error) {
            this.error = error;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
                            res.getEntry().getMd().setWhy("This is a graph entry point. No links.");
                        } else {
                            // System.out.println("--->"+v.getMd().toDomainString()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
Back to top