| java.lang.Object org.apache.jasper.compiler.JavacErrorDetail
JavacErrorDetail | public class JavacErrorDetail (Code) | | Class providing details about a javac compilation error.
author: Jan Luehe author: Kin-man Chung |
Method Summary | |
public String | getErrorMessage() Gets the compilation error message. | public String | getJavaFileName() Gets the name of the Java source file in which the compilation error
occurred. | public int | getJavaLineNumber() Gets the compilation error line number. | public int | getJspBeginLineNumber() Gets the start line number (in the JSP file) of the JSP element
responsible for the compilation error. | public String | getJspFileName() Gets the name of the JSP file from which the Java source file was
generated. |
JavacErrorDetail | public JavacErrorDetail(String javaFileName, int javaLineNum, StringBuffer errMsg)(Code) | | Constructor.
Parameters: javaFileName - The name of the Java file in which the compilation error occurred Parameters: javaLineNum - The compilation error line number Parameters: errMsg - The compilation error message |
JavacErrorDetail | public JavacErrorDetail(String javaFileName, int javaLineNum, String jspFileName, int jspBeginLineNum, StringBuffer errMsg)(Code) | | Constructor.
Parameters: javaFileName - The name of the Java file in which the compilation error occurred Parameters: javaLineNum - The compilation error line number Parameters: jspFileName - The name of the JSP file from which the Java sourcefile was generated Parameters: jspBeginLineNum - The start line number of the JSP elementresponsible for the compilation error Parameters: errMsg - The compilation error message |
getErrorMessage | public String getErrorMessage()(Code) | | Gets the compilation error message.
Compilation error message |
getJavaFileName | public String getJavaFileName()(Code) | | Gets the name of the Java source file in which the compilation error
occurred.
Java source file name |
getJavaLineNumber | public int getJavaLineNumber()(Code) | | Gets the compilation error line number.
Compilation error line number |
getJspBeginLineNumber | public int getJspBeginLineNumber()(Code) | | Gets the start line number (in the JSP file) of the JSP element
responsible for the compilation error.
Start line number of the JSP element responsible for thecompilation error |
getJspFileName | public String getJspFileName()(Code) | | Gets the name of the JSP file from which the Java source file was
generated.
JSP file from which the Java source file was generated. |
|
|