com.samskivert.swing.event
Class PopupMenuAdapter

java.lang.Object
  extended by com.samskivert.swing.event.PopupMenuAdapter
All Implemented Interfaces:
EventListener, PopupMenuListener

public abstract class PopupMenuAdapter
extends Object
implements PopupMenuListener

An abstract adapter class for receiving popup menu 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.


Constructor Summary
PopupMenuAdapter()
           
 
Method Summary
 void popupMenuCanceled(PopupMenuEvent e)
           
 void popupMenuWillBecomeInvisible(PopupMenuEvent e)
           
 void popupMenuWillBecomeVisible(PopupMenuEvent e)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PopupMenuAdapter

public PopupMenuAdapter()
Method Detail

popupMenuWillBecomeInvisible

public void popupMenuWillBecomeInvisible(PopupMenuEvent e)
Specified by:
popupMenuWillBecomeInvisible in interface PopupMenuListener

popupMenuCanceled

public void popupMenuCanceled(PopupMenuEvent e)
Specified by:
popupMenuCanceled in interface PopupMenuListener

popupMenuWillBecomeVisible

public void popupMenuWillBecomeVisible(PopupMenuEvent e)
Specified by:
popupMenuWillBecomeVisible in interface PopupMenuListener


Copyright © 2000-2008 Michael Bayne. All Rights Reserved.