Class SimpleLocator

java.lang.Object
org.apache.xerces.impl.xs.util.SimpleLocator
All Implemented Interfaces:
org.apache.xerces.xni.XMLLocator

public final class SimpleLocator extends Object implements org.apache.xerces.xni.XMLLocator
An XMLLocator implementation used for schema error reporting.

INTERNAL:

Usage of this class is not supported. It may be altered or removed at any time.
Version:
$Id: SimpleLocator.java 660072 2008-05-26 02:05:15Z mrglavas $
Author:
Sandy Gao, IBM
  • Constructor Details

    • SimpleLocator

      public SimpleLocator()
    • SimpleLocator

      public SimpleLocator(String lsid, String esid, int line, int column)
    • SimpleLocator

      public SimpleLocator(String lsid, String esid, int line, int column, int offset)
  • Method Details

    • setValues

      public void setValues(String lsid, String esid, int line, int column)
    • setValues

      public void setValues(String lsid, String esid, int line, int column, int offset)
    • getLineNumber

      public int getLineNumber()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the line number, or -1 if no line number is available.
      Specified by:
      getLineNumber in interface org.apache.xerces.xni.XMLLocator
    • getColumnNumber

      public int getColumnNumber()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the column number, or -1 if no column number is available.
      Specified by:
      getColumnNumber in interface org.apache.xerces.xni.XMLLocator
    • getCharacterOffset

      public int getCharacterOffset()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the character offset, or -1 if no character offset is available.
      Specified by:
      getCharacterOffset in interface org.apache.xerces.xni.XMLLocator
    • getPublicId

      public String getPublicId()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the public identifier.
      Specified by:
      getPublicId in interface org.apache.xerces.xni.XMLLocator
    • getExpandedSystemId

      public String getExpandedSystemId()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the expanded system identifier.
      Specified by:
      getExpandedSystemId in interface org.apache.xerces.xni.XMLLocator
    • getLiteralSystemId

      public String getLiteralSystemId()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the literal system identifier.
      Specified by:
      getLiteralSystemId in interface org.apache.xerces.xni.XMLLocator
    • getBaseSystemId

      public String getBaseSystemId()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the base system identifier.
      Specified by:
      getBaseSystemId in interface org.apache.xerces.xni.XMLLocator
    • setColumnNumber

      public void setColumnNumber(int col)
    • setLineNumber

      public void setLineNumber(int line)
    • setCharacterOffset

      public void setCharacterOffset(int offset)
    • setBaseSystemId

      public void setBaseSystemId(String systemId)
      See Also:
      • XMLResourceIdentifier.setBaseSystemId(String)
    • setExpandedSystemId

      public void setExpandedSystemId(String systemId)
      See Also:
      • XMLResourceIdentifier.setExpandedSystemId(String)
    • setLiteralSystemId

      public void setLiteralSystemId(String systemId)
      See Also:
      • XMLResourceIdentifier.setLiteralSystemId(String)
    • setPublicId

      public void setPublicId(String publicId)
      See Also:
      • XMLResourceIdentifier.setPublicId(String)
    • getEncoding

      public String getEncoding()
      Returns the encoding of the current entity. Since these locators are used in the construction of XMLParseExceptions, which know nothing about encodings, there is no point in having this object deal intelligently with encoding information.
      Specified by:
      getEncoding in interface org.apache.xerces.xni.XMLLocator
    • getXMLVersion

      public String getXMLVersion()
      Description copied from interface: org.apache.xerces.xni.XMLLocator
      Returns the XML version of the current entity. This will normally be the value from the XML or text declaration or defaulted by the parser. Note that that this value may be different than the version of the processing rules applied to the current entity. For instance, an XML 1.1 document may refer to XML 1.0 entities. In such a case the rules of XML 1.1 are applied to the entire document. Also note that, for a given entity, this value can only be considered final once the XML or text declaration has been read or once it has been determined that there is no such declaration.
      Specified by:
      getXMLVersion in interface org.apache.xerces.xni.XMLLocator