Package org.apache.maven.model
Class InputLocation
java.lang.Object
org.apache.maven.model.InputLocation
- All Implemented Interfaces:
Serializable
,Cloneable
,InputLocationTracker
public final class InputLocation
extends Object
implements Serializable, Cloneable, InputLocationTracker
Class InputLocation.
- Version:
- $Revision$ $Date$
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Class StringFormatter. -
Constructor Summary
ConstructorDescriptionInputLocation
(int lineNumber, int columnNumber) InputLocation
(int lineNumber, int columnNumber, InputSource source) InputLocation
(InputLocation location) -
Method Summary
Modifier and TypeMethodDescriptionclone()
Method clone.int
Get the one-based column number.int
Get the one-based line number.getLocation
(Object key) Gets the location of the specified field in the input source.Get the source field.static InputLocation
merge
(InputLocation target, InputLocation source, boolean sourceDominant) Method merge.static InputLocation
merge
(InputLocation target, InputLocation source, Collection<Integer> indices) Method merge.void
setLocation
(Object key, InputLocation location) Sets the location of the specified field.void
setLocations
(Map<Object, InputLocation> locations) void
setOtherLocation
(Object key, InputLocation location) toString()
-
Constructor Details
-
InputLocation
-
InputLocation
public InputLocation(int lineNumber, int columnNumber) -
InputLocation
-
-
Method Details
-
clone
Method clone. -
getColumnNumber
public int getColumnNumber()Get the one-based column number. The value will be non-positive if unknown.- Returns:
- int
-
getLineNumber
public int getLineNumber()Get the one-based line number. The value will be non-positive if unknown.- Returns:
- int
-
getLocation
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
-- Returns:
- InputLocation
-
getLocations
- Returns:
- Map
-
setLocation
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
-location
-
-
setOtherLocation
- Parameters:
key
-location
-
-
getSource
Get the source field.- Returns:
- InputSource
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) Method merge.- Parameters:
target
-source
-sourceDominant
-- Returns:
- InputLocation
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, Collection<Integer> indices) Method merge.- Parameters:
target
-source
-indices
-- Returns:
- InputLocation
-
setLocations
- Parameters:
locations
-
-
toApiLocation
-
toString
-