ice.util.awt
Interface AWTEventListenerCallback
- public interface AWTEventListenerCallback
This interface was specifically added as a callback mechanism for the
ice.pilots.html4.awt package. It is used in conjunction with
ice.util.awt.jdk12.AWTEventListener to provide a way for ice.pilots.html4.awt
classes to receive AWTEvents without having to implement the
java.awt.AWTListener interface.
The reason for this is that we want the ice.pilots.html4.awt to remain
JDK 1.1 friendly and AWTEventListener is not available in JDK 1.1.x. We
also want to avoid any dependencies of the ice.util classes on anything
outside of ice.util.
Instead, this interface can be implemented and then reflectively
registered with an instance of ice.util.awt.jdk12.AWTEventListener.
receiveEvent
public void receiveEvent(AWTEvent awtEvent)