Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

alice.tuprolog
Class SpyEvent  view SpyEvent download SpyEvent.java

java.lang.Object
  extended byjava.util.EventObject
      extended byalice.tuprolog.SpyEvent
All Implemented Interfaces:
java.io.Serializable

public class SpyEvent
extends java.util.EventObject

internal core event


Field Summary
private  java.lang.String msg
          event description
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
SpyEvent(java.lang.Object source, java.lang.String msg_)
           
 
Method Summary
 java.lang.String getMsg()
           
 java.lang.String toString()
          Converts the event to a String.
 
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

msg

private java.lang.String msg
event description

Constructor Detail

SpyEvent

public SpyEvent(java.lang.Object source,
                java.lang.String msg_)
Method Detail

getMsg

public java.lang.String getMsg()

toString

public java.lang.String toString()
Description copied from class: java.util.EventObject
Converts the event to a String. The format is not specified, but by observation, the JDK uses: getClass().getName() + "[source=" + source + "]";.