public class JavacErrorDetail extends Object
Constructor | Description |
---|---|
JavacErrorDetail(String javaFileName,
int javaLineNum,
StringBuilder errMsg) |
Constructor.
|
JavacErrorDetail(String javaFileName,
int javaLineNum,
String jspFileName,
int jspBeginLineNum,
StringBuilder errMsg) |
Constructor.
|
Modifier and Type | Method | Description |
---|---|---|
String |
getErrorMessage() |
Gets the compilation error message.
|
String |
getJavaFileName() |
Gets the name of the Java source file in which the compilation error
occurred.
|
int |
getJavaLineNumber() |
Gets the compilation error line number.
|
int |
getJspBeginLineNumber() |
Gets the start line number (in the JSP file) of the JSP element
responsible for the compilation error.
|
String |
getJspFileName() |
Gets the name of the JSP file from which the Java source file was
generated.
|
public JavacErrorDetail(String javaFileName, int javaLineNum, StringBuilder errMsg)
javaFileName
- The name of the Java file in which the
compilation error occurredjavaLineNum
- The compilation error line numbererrMsg
- The compilation error messagepublic JavacErrorDetail(String javaFileName, int javaLineNum, String jspFileName, int jspBeginLineNum, StringBuilder errMsg)
javaFileName
- The name of the Java file in which the
compilation error occurredjavaLineNum
- The compilation error line numberjspFileName
- The name of the JSP file from which the Java source
file was generatedjspBeginLineNum
- The start line number of the JSP element
responsible for the compilation errorerrMsg
- The compilation error messagepublic String getJavaFileName()
public int getJavaLineNumber()
public String getJspFileName()
public int getJspBeginLineNumber()
public String getErrorMessage()
Copyright © 2019 Oracle. All rights reserved.