package bluej.parser;
| A wrapper for error message code strings.
|
| <p>These codes are produced by the BlueJ parser, and correspond to parse errors occurring in
| certain contexts.
|
| @author Davin McCall
|
public class JavaErrorCodes
{
| Method declaration not followed by one of ';', method body, or "throws" clause */
|
public static final String BJ000 = "BJ000";
/** Bracket expected (after "if" or "while" etc) - see also BJ02 */
public static final String BJ001 = "BJ001";
/** Condition expected (after "if" or "while" etc) - occurs when a brace is found but a bracket was expected */
public static final String BJ002 = "BJ002";
/** Expected semicolon (various contexts); no other token would be valid */
public static final String BJ003 = "BJ003";
}
top,
use,
map,
class JavaErrorCodes
4 neLoCode
+ 5 LoComm