Interface XMLLocator
-
public interface XMLLocatorLocation information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBaseSystemId()Returns the base system identifier.intgetColumnNumber()Returns the column number.java.lang.StringgetEncoding()Returns the encoding of the current entity.java.lang.StringgetExpandedSystemId()Returns the expanded system identifier.intgetLineNumber()Returns the line number.java.lang.StringgetLiteralSystemId()Returns the literal system identifier.java.lang.StringgetPublicId()Returns the public identifier.
-
-
-
Method Detail
-
getPublicId
java.lang.String getPublicId()
Returns the public identifier.
-
getLiteralSystemId
java.lang.String getLiteralSystemId()
Returns the literal system identifier.
-
getBaseSystemId
java.lang.String getBaseSystemId()
Returns the base system identifier.
-
getExpandedSystemId
java.lang.String getExpandedSystemId()
Returns the expanded system identifier.
-
getLineNumber
int getLineNumber()
Returns the line number.
-
getColumnNumber
int getColumnNumber()
Returns the column number.
-
getEncoding
java.lang.String getEncoding()
Returns the encoding of the current entity. Note that, for a given entity, this value can only be considered final once the encoding declaration has been read (or once it has been determined that there is no such declaration) since, no encoding having been specified on the XMLInputSource, the parser will make an initial "guess" which could be in error.
-
-