Methods Summary |
---|
public int | getEndColumn()Return the ending column number of the program text originating this
error
return endcolumn;
|
public int | getEndLine()Return the ending line number of the program text originating this error
return endline;
|
public java.lang.String | getFile()Return the filename associated with this compiler error.
return file;
|
public java.lang.String | getMessage()Return the message produced by the language processor
return message;
|
public int | getStartColumn()Return the starting column number of the program text originating this
error
return startcolumn;
|
public int | getStartLine()Return the starting line number of the program text originating this error
return startline;
|
public boolean | isError()Assert whether this is a severe error or a warning
return error;
|