Package org.apache.maven.api.settings
Class InputLocation
java.lang.Object
org.apache.maven.api.settings.InputLocation
- All Implemented Interfaces:
Serializable
,InputLocationTracker
Class InputLocation.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Class StringFormatter. -
Constructor Summary
ConstructorDescriptionInputLocation
(int lineNumber, int columnNumber) InputLocation
(int lineNumber, int columnNumber, InputSource source) InputLocation
(int lineNumber, int columnNumber, InputSource source, Object selfLocationKey) InputLocation
(int lineNumber, int columnNumber, InputSource source, Map<Object, InputLocation> locations) InputLocation
(InputSource source) -
Method Summary
Modifier and TypeMethodDescriptionint
int
getLocation
(Object key) static InputLocation
merge
(InputLocation target, InputLocation source, boolean sourceDominant) Merges thesource
location into thetarget
location.static InputLocation
merge
(InputLocation target, InputLocation source, Collection<Integer> indices) Merges thesource
location into thetarget
location.
-
Constructor Details
-
InputLocation
-
InputLocation
public InputLocation(int lineNumber, int columnNumber) -
InputLocation
-
InputLocation
-
InputLocation
public InputLocation(int lineNumber, int columnNumber, InputSource source, Map<Object, InputLocation> locations)
-
-
Method Details
-
getLineNumber
public int getLineNumber() -
getColumnNumber
public int getColumnNumber() -
getSource
-
getLocation
- Specified by:
getLocation
in interfaceInputLocationTracker
-
getLocations
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) Merges thesource
location into thetarget
location.- Parameters:
target
- the target locationsource
- the source locationsourceDominant
- the boolean indicating ofsource
is dominant compared totarget
- Returns:
- the merged location
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, Collection<Integer> indices) Merges thesource
location into thetarget
location. This method is used when the locations refer to lists and also merges the indices.- Parameters:
target
- the target locationsource
- the source locationindices
- the list of integers for the indices- Returns:
- the merged location
-