-
@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 packagejdk.javadoc.doclet
. For more information, see the Migration Guide in the documentation for that package.此接口描述源位置:文件名,行号和列号。- 从以下版本开始:
- 1.4
-
-
方法详细信息
-
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列制表位。- 结果
- 源行上的列为整数。
-
-