antlr.debug
Class MessageEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--antlr.debug.Event
              |
              +--antlr.debug.MessageEvent
All Implemented Interfaces:
Serializable

public class MessageEvent
extends Event

Untamed:

See Also:
Serialized Form

Field Summary
static int ERROR
          Enabled:
private  String text
           
static int WARNING
          Enabled:
 
Fields inherited from class antlr.debug.Event
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
MessageEvent(Object source)
          Enabled:
MessageEvent(Object source, int type, String text)
          Enabled:
 
Method Summary
 String getText()
          Enabled:
(package private)  void setText(String text)
           
(package private)  void setValues(int type, String text)
          This should NOT be called from anyone other than ParserEventSupport!
 String toString()
          Suppressed:
 
Methods inherited from class antlr.debug.Event
getType, setType, setValues
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

text

private String text

WARNING

public static int WARNING
Enabled:


ERROR

public static int ERROR
Enabled:

Constructor Detail

MessageEvent

public MessageEvent(Object source)
Enabled:


MessageEvent

public MessageEvent(Object source,
                    int type,
                    String text)
Enabled:

Method Detail

getText

public String getText()
Enabled:


setText

void setText(String text)

setValues

void setValues(int type,
               String text)
This should NOT be called from anyone other than ParserEventSupport!


toString

public String toString()
Suppressed:

Overrides:
toString in class EventObject
Returns:
A a String representation of this EventObject.


comments?