Interface IErrorReporter
-
- All Known Implementing Classes:
ErrorReporter,IErrorReporter.SilentReporter
public interface IErrorReporter
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIErrorReporter.SilentReporter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddetail(String tag, Object obj)voiddetail2(String tag1, Object obj1, String tag2, Object obj2)intgetErrorCount()List<MableError>getErrors()intgetWarningCount()List<MableWarning>getWarnings()voidprintErrors(PrintWriter out)voidprintWarnings(PrintWriter out)voidreport(int number, String problem, LexToken location)voidwarning(int number, String problem, LexToken location)
-
-
-
Method Detail
-
getErrorCount
int getErrorCount()
-
getWarningCount
int getWarningCount()
-
getErrors
List<MableError> getErrors()
-
getWarnings
List<MableWarning> getWarnings()
-
printErrors
void printErrors(PrintWriter out)
-
printWarnings
void printWarnings(PrintWriter out)
-
-