SyntacticPredicateEvent.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:
编译器/解释器
开发平台:
Others
- package antlr.debug;
- public class SyntacticPredicateEvent extends GuessingEvent {
- public SyntacticPredicateEvent(Object source) {
- super(source);
- }
- public SyntacticPredicateEvent(Object source, int type) {
- super(source, type);
- }
- /** This should NOT be called from anyone other than ParserEventSupport! */
- void setValues(int type, int guessing) {
- super.setValues(type, guessing);
- }
- public String toString() {
- return "SyntacticPredicateEvent [" + getGuessing() + "]";
- }
- }