模块  jdk.javadoc
软件包  com.sun.javadoc

Interface SourcePosition


  • @Deprecated(since="9",
                forRemoval=true)
    public interface SourcePosition
    Deprecated, for removal: This API element is subject to removal in a future version.
    The declarations in this package have been superseded by those in the package jdk.javadoc.doclet. For more information, see the Migration Guide in the documentation for that package.
    此接口描述源位置:文件名,行号和列号。
    从以下版本开始:
    1.4
    • 方法摘要

      所有方法  实例方法 抽象方法  弃用的方法 
      变量和类型 方法 描述
      int column()
      不推荐使用,要删除:此API元素将在以后的版本中删除。
      源文件中的列。
      File file()
      不推荐使用,要删除:此API元素将在以后的版本中删除。
      源文件。
      int line()
      不推荐使用,要删除:此API元素将在以后的版本中删除。
      源文件中的行。
      String toString()
      不推荐使用,要删除:此API元素将在以后的版本中删除。
      将源位置转换为“文件名:行”形式。
    • 方法详细信息

      • file

        File file()
        Deprecated, for removal: This API element is subject to removal in a future version.
        源文件。 如果没有可用的文件信息,则返回null。
        结果
        源文件作为文件。
      • line

        int line()
        Deprecated, for removal: This API element is subject to removal in a future version.
        源文件中的行。 第一行编号为1; 0表示没有可用的行号信息。
        结果
        源文件中的行号为整数。
      • column

        int column()
        Deprecated, for removal: This API element is subject to removal in a future version.
        源文件中的列。 第一列编号为1; 0表示没有列信息可用。 列计数输入流中的字符; 选项卡将列号前进到下一个8列制表位。
        结果
        源行上的列为整数。
      • toString

        String toString()
        Deprecated, for removal: This API element is subject to removal in a future version.
        将源位置转换为“文件名:行”形式。
        重写:
        toString在类 Object
        结果
        a string representation of the object.