org.apache.batik.css.event
Class SelectorListChangeEvent

java.lang.Object
  |
  +--org.apache.batik.css.event.SelectorListChangeEvent

public class SelectorListChangeEvent
extends java.lang.Object

This class represents the events which get fired whenever a selector list is changed.


Field Summary
protected  SelectorList newValue
          The selector list new value.
protected  SelectorList oldValue
          The selector list old value.
protected  java.lang.Object source
          The source of this event.
 
Constructor Summary
SelectorListChangeEvent(java.lang.Object source, SelectorList before, SelectorList after)
          Creates a new SelectorListChangeEvent object.
 
Method Summary
 SelectorList getNewValue()
          Returns the value of the property after the change.
 SelectorList getOldValue()
          Returns the value of the property before the change.
 java.lang.Object getSource()
          Returns the event source.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

source

protected java.lang.Object source
The source of this event.

oldValue

protected SelectorList oldValue
The selector list old value.

newValue

protected SelectorList newValue
The selector list new value.
Constructor Detail

SelectorListChangeEvent

public SelectorListChangeEvent(java.lang.Object source,
                               SelectorList before,
                               SelectorList after)
Creates a new SelectorListChangeEvent object.
Parameters:
source - The source of this event.
property - The property name.
before - The selector list value before the change.
after - The selector value after the change.
Method Detail

getSource

public java.lang.Object getSource()
Returns the event source.

getOldValue

public SelectorList getOldValue()
Returns the value of the property before the change.

getNewValue

public SelectorList getNewValue()
Returns the value of the property after the change.


Copyright © 2001 Apache Software Foundation. All Rights Reserved.