- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getImportedFrom (0.08 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
e -> e.getKey(), e -> e.getValue() == location ? this : new InputLocation(e.getValue()))); this.importedFrom = location.getImportedFrom() != null ? new InputLocation(location.getImportedFrom()) : null; } public InputLocation(int lineNumber, int columnNumber) { this.lineNumber = lineNumber; this.columnNumber = columnNumber;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
public InputSource(org.apache.maven.api.model.InputSource source) { this.modelId = source.getModelId(); this.location = source.getLocation(); this.importedFrom = source.getImportedFrom() != null ? new InputLocation(source.getImportedFrom()) : null; } // -----------/ // - Methods -/ // -----------/ /** * Method clone. * * @return InputSource */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocationTracker.java
/** * Gets the parent InputLocation where this InputLocation may have been imported from. * Can return {@code null}. * * @return InputLocation * @since 4.0.0 */ InputLocation getImportedFrom();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 1.1K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 3.5K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
* Gets the parent InputLocation where this InputLocation may have been imported from. * Can return {@code null}. * * @return InputLocation * @since 4.0.0 */ public InputLocation getImportedFrom() { return importedFrom; } /** * Merges the {@code source} location into the {@code target} location. * * @param target the target location
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0)