| java.lang.Object com.anthonyeden.lib.config.Location
Location | public class Location implements Cloneable(Code) | | This interface provides information about where the configuration object was
located in the configuration file.
author: Anthony Eden since: 2.0 |
Constructor Summary | |
public | Location(String sourceId, int lineNumber, int columnNumber) |
Location | public Location(String sourceId, int lineNumber, int columnNumber)(Code) | | Construct a new Location object
Parameters: sourceId - The source ID Parameters: lineNumber - The line number Parameters: columnNumber - The column number |
getColumnNumber | public int getColumnNumber()(Code) | | Get the column number
The column number |
getLineNumber | public int getLineNumber()(Code) | | Get the line number
The line number |
getSourceId | public String getSourceId()(Code) | | Get the source ID which is used to identify the source of the
configuration data. This method should return a file path, URL or some
other form of human readable location ID
The source ID |
setColumnNumber | public void setColumnNumber(int columnNumber)(Code) | | |
setLineNumber | public void setLineNumber(int lineNumber)(Code) | | |
|
|