org.apache.maven.model
Class InputLocation

java.lang.Object
  extended by 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:
Serialized Form

Constructor Summary
InputLocation(int lineNumber, int columnNumber)
           
InputLocation(int lineNumber, int columnNumber, InputSource source)
           
 
Method Summary
 InputLocation clone()
          Method clone.
 int getColumnNumber()
          Get the one-based column number.
 int getLineNumber()
          Get the one-based line number.
 InputLocation getLocation(Object key)
          Gets the location of the specified field in the input source.
 Map<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, Collection<Integer> indices)
          Method merge.
 void setLocation(Object key, InputLocation location)
          Sets the location of the specified field.
 void setLocations(Map<Object,InputLocation> locations)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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 class 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(Object key)
Description copied from interface: InputLocationTracker
Gets the location of the specified field in the input source.

Specified by:
getLocation in interface InputLocationTracker
Parameters:
key -
Returns:
InputLocation

getLocations

public Map<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,
                                  Collection<Integer> indices)
Method merge.

Parameters:
target -
indices -
source -
Returns:
InputLocation

setLocation

public void setLocation(Object key,
                        InputLocation location)
Description copied from interface: InputLocationTracker
Sets the location of the specified field.

Specified by:
setLocation in interface InputLocationTracker
Parameters:
key -
location -

setLocations

public void setLocations(Map<Object,InputLocation> locations)
Parameters:
locations -

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.