Interface JSourcePosition

  • All Known Subinterfaces:
    MSourcePosition
    All Known Implementing Classes:
    SourcePositionImpl

    public interface JSourcePosition
    Describes a specific point in a source file.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getColumn()
      Returns the text column number for this source position, or -1 if it is not known.
      int getLine()
      Returns the text line number for this source position, or -1 if it is not known.
      java.net.URI getSourceURI()
      Returns the URI of the source file, or null if it is not known.
    • Method Detail

      • getColumn

        int getColumn()
        Returns the text column number for this source position, or -1 if it is not known.
      • getLine

        int getLine()
        Returns the text line number for this source position, or -1 if it is not known.
      • getSourceURI

        java.net.URI getSourceURI()
        Returns the URI of the source file, or null if it is not known.