FileDocCategorySizeDatePackage
AWTEventListenerProxy.javaAPI DocAndroid 1.5 API1818Wed May 06 22:41:54 BST 2009java.awt.event

AWTEventListenerProxy

public class AWTEventListenerProxy extends EventListenerProxy implements AWTEventListener
This class is not supported in Android 1.0. It is merely provided to maintain interface compatibility with desktop Java implementations.
since
Android 1.0

Fields Summary
private AWTEventListener
listener
private long
eventMask
Constructors Summary
public AWTEventListenerProxy(long eventMask, AWTEventListener listener)

        super(listener);

        // awt.193=Listener can't be zero
        assert listener != null : Messages.getString("awt.193"); //$NON-NLS-1$

        this.listener = listener;
        this.eventMask = eventMask;
    
Methods Summary
public voideventDispatched(java.awt.AWTEvent evt)

        listener.eventDispatched(evt);
    
public longgetEventMask()

        return eventMask;