jeops.conflict
Class InternalConflictSetEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--jeops.conflict.InternalConflictSetEvent

public class InternalConflictSetEvent
extends java.util.EventObject

A semantic event that indicates that an element was added to or removed from a conflict set. This class is used only internally to JEOPS for control purposes.

Version:
0.01 08 Jun 2000
Author:
Carlos Figueira Filho (csff@cin.ufpe.br)
See Also:
Serialized Form

Field Summary
private  ConflictSetElement element
          The element that was added or removed.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
InternalConflictSetEvent(ConflictSet source, ConflictSetElement element)
          Class constructor.
 
Method Summary
 ConflictSetElement getElement()
          Returns the element that was added or removed.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

element

private ConflictSetElement element
The element that was added or removed.
Constructor Detail

InternalConflictSetEvent

public InternalConflictSetEvent(ConflictSet source,
                                ConflictSetElement element)
Class constructor.
Parameters:
source - the conflict set to/from where the element was added/removed.
element - the element that was added or removed.
Method Detail

getElement

public ConflictSetElement getElement()
Returns the element that was added or removed.
Returns:
the element that was added or removed.