gw.gosudoc.com.sun.javadoc.SourcePosition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gosu-doc Show documentation
Show all versions of gosu-doc Show documentation
Generates Javadoc-compatible documentation for Gosu projects
/*
* This file is a shadowed version of the older javadoc codebase on which gosudoc is based; borrowed from jdk 9.
*/
package gw.gosudoc.com.sun.javadoc;
import java.io.File;
/**
* This interface describes a source position: filename, line number,
* and column number.
*
* @since 1.4
* @author Neal M Gafter
*
* @deprecated
* The declarations in this package have been superseded by those
* in the package {@code jdk.javadoc.doclet}.
* For more information, see the Migration Guide in the documentation for that package.
*/
@Deprecated
public interface SourcePosition {
/** The source file. Returns null if no file information is
* available.
*
* @return the source file as a File.
*/
File file();
/** The line in the source file. The first line is numbered 1;
* 0 means no line number information is available.
*
* @return the line number in the source file as an integer.
*/
int line();
/** The column in the source file. The first column is
* numbered 1; 0 means no column information is available.
* Columns count characters in the input stream; a tab
* advances the column number to the next 8-column tab stop.
*
* @return the column on the source line as an integer.
*/
int column();
/** Convert the source position to the form "Filename:line". */
String toString();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy