Class CompilerMessageImpl
- java.lang.Object
-
- org.apache.sling.scripting.sightly.impl.compiler.CompilerMessageImpl
-
- All Implemented Interfaces:
CompilerMessage
public class CompilerMessageImpl extends Object implements CompilerMessage
-
-
Constructor Summary
Constructors Constructor Description CompilerMessageImpl(String scriptName, String message, int line, int column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
Returns the column number of the script text that generated this message.int
getLine()
Returns the line number of the script text that generated this message.String
getMessage()
Returns the compiler's message.String
getScriptName()
Returns the script name associated with this message.
-
-
-
Method Detail
-
getScriptName
public String getScriptName()
Description copied from interface:CompilerMessage
Returns the script name associated with this message.- Specified by:
getScriptName
in interfaceCompilerMessage
- Returns:
- the script name associated with this message
-
getMessage
public String getMessage()
Description copied from interface:CompilerMessage
Returns the compiler's message.- Specified by:
getMessage
in interfaceCompilerMessage
- Returns:
- the compiler's message
-
getLine
public int getLine()
Description copied from interface:CompilerMessage
Returns the line number of the script text that generated this message.- Specified by:
getLine
in interfaceCompilerMessage
- Returns:
- the line number of the script text that generated this message
-
getColumn
public int getColumn()
Description copied from interface:CompilerMessage
Returns the column number of the script text that generated this message.- Specified by:
getColumn
in interfaceCompilerMessage
- Returns:
- the column number of the script text that generated this message
-
-