Package org.apache.maven.internal.impl
Class StaxLocation
java.lang.Object
org.apache.maven.internal.impl.StaxLocation
- All Implemented Interfaces:
- Location
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintReturn the byte or character offset into the input source this location is pointing to.intReturn the column number where the current event ends, returns -1 if none is available.intReturn the line number where the current event ends, returns -1 if none is available.static Locationstatic StringReturns the public ID of the XMLReturns the system ID of the XMLstatic LocationtoLocation(Location location) 
- 
Constructor Details- 
StaxLocation
 
- 
- 
Method Details- 
getLocation
- 
toLocation
- 
getMessage
- 
getLineNumberpublic int getLineNumber()Description copied from interface:LocationReturn the line number where the current event ends, returns -1 if none is available.- Specified by:
- getLineNumberin interface- Location
- Returns:
- the current line number
 
- 
getColumnNumberpublic int getColumnNumber()Description copied from interface:LocationReturn the column number where the current event ends, returns -1 if none is available.- Specified by:
- getColumnNumberin interface- Location
- Returns:
- the current column number
 
- 
getCharacterOffsetpublic int getCharacterOffset()Description copied from interface:LocationReturn the byte or character offset into the input source this location is pointing to. If the input source is a file or a byte stream then this is the byte offset into that stream, but if the input source is a character media then the offset is the character offset. Returns -1 if there is no offset available.- Specified by:
- getCharacterOffsetin interface- Location
- Returns:
- the current offset
 
- 
getPublicIdDescription copied from interface:LocationReturns the public ID of the XML- Specified by:
- getPublicIdin interface- Location
- Returns:
- the public ID, or null if not available
 
- 
getSystemIdDescription copied from interface:LocationReturns the system ID of the XML- Specified by:
- getSystemIdin interface- Location
- Returns:
- the system ID, or null if not available
 
 
-