All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.groovy.antlr.SourceInfo Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show newest version
package org.codehaus.groovy.antlr;

public interface SourceInfo {
    /**
     * get start line
     *
     * @return the starting line
     */
    int getLine();

    /**
     * set start line
     *
     * @param l the line
     */
    void setLine(int l);

    /**
     * get starting column
     *
     * @return the starting column
     */
    int getColumn();

    /**
     * set start column
     *
     * @param c the column
     */
    void setColumn(int c);

    /**
     * get ending line
     *
     * @return the ending line
     */
    int getLineLast();

    /**
     * set ending line
     *
     * @param lineLast the line
     */
    void setLineLast(int lineLast);

    /**
     * get ending column
     *
     * @return the ending column
     */
    int getColumnLast();

    /**
     * set ending column
     *
     * @param colLast the column
     */
    void setColumnLast(int colLast);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy