- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setImportedFrom (0.06 seconds)
-
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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 5.6K bytes - Click Count (0) -
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
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 13.5K bytes - Click Count (0)