com.jniwrapper.win32.hook
Class CallWndProcEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.jniwrapper.win32.hook.HookEventObject
          extended by com.jniwrapper.win32.hook.CallWndProcEvent
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CallWndProcRetEvent

public class CallWndProcEvent
extends HookEventObject

This class describes events of the Hook.Descriptor.CALLWNDPROC hook.

See Also:
Serialized Form

Field Summary
protected  long _LParam
          Specifies additional information about the message.
protected  long _message
          Specifies the message.
protected  boolean _sentByCurrentThread
          Specifies whether the message was sent by the current thread.
protected  Wnd _wnd
          Handle to the window to receive the message.
protected  long _WParam
          Specifies additional information about the message.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
CallWndProcEvent(java.lang.Object source, long LParam, long WParam, long message, Wnd wnd, boolean sentByCurrentThread)
           
 
Method Summary
 long getLParam()
           
 long getMessage()
           
 Wnd getWnd()
           
 long getWParam()
           
 boolean isSentByCurrentThread()
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_LParam

protected long _LParam
Specifies additional information about the message.


_WParam

protected long _WParam
Specifies additional information about the message.


_message

protected long _message
Specifies the message.


_wnd

protected Wnd _wnd
Handle to the window to receive the message.


_sentByCurrentThread

protected boolean _sentByCurrentThread
Specifies whether the message was sent by the current thread.

Constructor Detail

CallWndProcEvent

public CallWndProcEvent(java.lang.Object source,
                        long LParam,
                        long WParam,
                        long message,
                        Wnd wnd,
                        boolean sentByCurrentThread)
Method Detail

getLParam

public long getLParam()

getWParam

public long getWParam()

getMessage

public long getMessage()

getWnd

public Wnd getWnd()

isSentByCurrentThread

public boolean isSentByCurrentThread()