Package org.apache.maven.model
Class InputLocation
- java.lang.Object
-
- org.apache.maven.model.InputLocation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,InputLocationTracker
public final class InputLocation extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
Class InputLocation.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InputLocation.StringFormatter
Class StringFormatter.
-
Constructor Summary
Constructors Constructor Description InputLocation(int lineNumber, int columnNumber)
InputLocation(int lineNumber, int columnNumber, InputSource source)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description InputLocation
clone()
Method clone.int
getColumnNumber()
Get the one-based column number.int
getLineNumber()
Get the one-based line number.InputLocation
getLocation(java.lang.Object key)
Gets the location of the specified field in the input source.java.util.Map<java.lang.Object,InputLocation>
getLocations()
InputSource
getSource()
Get the source field.static InputLocation
merge(InputLocation target, InputLocation source, boolean sourceDominant)
Method merge.static InputLocation
merge(InputLocation target, InputLocation source, java.util.Collection<java.lang.Integer> indices)
Method merge.void
setLocation(java.lang.Object key, InputLocation location)
Sets the location of the specified field.void
setLocations(java.util.Map<java.lang.Object,InputLocation> locations)
java.lang.String
toString()
-
-
-
Constructor Detail
-
InputLocation
public InputLocation(int lineNumber, int columnNumber)
-
InputLocation
public InputLocation(int lineNumber, int columnNumber, InputSource source)
-
-
Method Detail
-
clone
public InputLocation clone()
Method clone.- Overrides:
clone
in classjava.lang.Object
- Returns:
- InputLocation
-
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
public InputLocation getLocation(java.lang.Object key)
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
public java.util.Map<java.lang.Object,InputLocation> getLocations()
- Returns:
- Map
-
getSource
public InputSource getSource()
Get the source field.- Returns:
- InputSource
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant)
Method merge.- Parameters:
target
-sourceDominant
-source
-- Returns:
- InputLocation
-
merge
public static InputLocation merge(InputLocation target, InputLocation source, java.util.Collection<java.lang.Integer> indices)
Method merge.- Parameters:
target
-indices
-source
-- Returns:
- InputLocation
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
-location
-
-
setLocations
public void setLocations(java.util.Map<java.lang.Object,InputLocation> locations)
- Parameters:
locations
-
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-