Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setImportedFrom (0.07 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

        /**
         * Set the location of the POM from which this POM was imported from.
         *
         * @param importedFrom the InputLocation where this POM was imported from, or null if not imported
         */
        public void setImportedFrom(InputLocation importedFrom) {
            this.importedFrom = importedFrom;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java

        public InputLocation getImportedFrom() {
            return importedFrom;
        }
    
        /**
         * Set the imported from location.
         *
         * @param importedFrom
         */
        public void setImportedFrom(InputLocation importedFrom) {
            this.importedFrom = importedFrom;
        }
    
        /**
         * Method merge.
         *
         * @param target
         * @param sourceDominant
         * @param source
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 13.5K bytes
    - Viewed (0)
Back to top