com.samskivert.swing.event
Class AncestorAdapter
java.lang.Object
com.samskivert.swing.event.AncestorAdapter
- All Implemented Interfaces:
- EventListener, AncestorListener
public abstract class AncestorAdapter
- extends Object
- implements AncestorListener
An abstract adapter class for receiving ancestor events. The methods in
this class are empty. This class exists as a convenience for creating
listener objects.
This class really ought to have been provided as a standard part of
the javax.swing.event package, but somehow the developers
missed it and so we've done their job for them.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AncestorAdapter
public AncestorAdapter()
ancestorAdded
public void ancestorAdded(AncestorEvent e)
- Specified by:
ancestorAdded in interface AncestorListener
ancestorMoved
public void ancestorMoved(AncestorEvent e)
- Specified by:
ancestorMoved in interface AncestorListener
ancestorRemoved
public void ancestorRemoved(AncestorEvent e)
- Specified by:
ancestorRemoved in interface AncestorListener
Copyright © 2000-2008 Michael Bayne.
All Rights Reserved.