Interface CompilerMessage
-
@ProviderType public interface CompilerMessage
This class describes the messages (warnings or errors) theSightlyCompilerwill produce when compiling a script.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn()Returns the column number of the script text that generated this message.intgetLine()Returns the line number of the script text that generated this message.java.lang.StringgetMessage()Returns the compiler's message.java.lang.StringgetScriptName()Returns the script name associated with this message.
-
-
-
Method Detail
-
getScriptName
java.lang.String getScriptName()
Returns the script name associated with this message.- Returns:
- the script name associated with this message
-
getMessage
java.lang.String getMessage()
Returns the compiler's message.- Returns:
- the compiler's message
-
getLine
int getLine()
Returns the line number of the script text that generated this message.- Returns:
- the line number of the script text that generated this message
-
getColumn
int getColumn()
Returns the column number of the script text that generated this message.- Returns:
- the column number of the script text that generated this message
-
-