agg.parser
Class ParserEvent

java.lang.Object
  extended by java.util.EventObject
      extended by agg.parser.ParserEvent
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ParserErrorEvent, ParserMessageEvent

public abstract class ParserEvent
extends java.util.EventObject

This event is a generall message from a parser.

See Also:
Serialized Form

Field Summary
static int FINISHED
           
protected  java.lang.String message
          The message text from a event.
static int PAIR_FINISHED
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
ParserEvent(java.lang.Object source)
          This constructor is inherited from EventObject.
 
Method Summary
 java.lang.String getMessage()
          Returns the message of the event.
protected  void setMessage(java.lang.String _message)
          Sets the message for the event.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PAIR_FINISHED

public static final int PAIR_FINISHED
See Also:
Constant Field Values

FINISHED

public static final int FINISHED
See Also:
Constant Field Values

message

protected java.lang.String message
The message text from a event.

Constructor Detail

ParserEvent

public ParserEvent(java.lang.Object source)
This constructor is inherited from EventObject.

Parameters:
source - The source of the event.
Method Detail

getMessage

public java.lang.String getMessage()
Returns the message of the event.

Returns:
The message.

setMessage

protected void setMessage(java.lang.String _message)
Sets the message for the event.

Parameters:
_message - The message.