package bluej.editor.moe;
import bluej.parser.nodes.RBTreeNode;
| A node in a tree representing a parse error highlight and its position.
|
| @author Davin McCall
|
public class ParseErrorNode extends RBTreeNode<ParseErrorNode>{
private Object highlightTag;
private String errCode;
| Construct a ParseErrorNode for the given highlight tag and the given error code / message.
|
public ParseErrorNode(Object highlightTag, String errCode)
{
this.highlightTag = highlightTag;
this.errCode = errCode;
}
| Get the highlight tag for this parse error node.
|
public Object getHighlightTag()
{
return highlightTag;
}
| Get the error code for this parse error node.
|
public String getErrCode()
{
return errCode;
}
}
. ParseErrorNode
. getHighlightTag
. getErrCode
37 neLoCode
+ 5 LoComm