Package org.sf.feeling.swt.win32.extension.hook.listener

Source Code of org.sf.feeling.swt.win32.extension.hook.listener.MessageHookEventListener

/*******************************************************************************
* Copyright (c) 2007 cnfree.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*  cnfree  - initial API and implementation
*******************************************************************************/

package org.sf.feeling.swt.win32.extension.hook.listener;

import org.sf.feeling.swt.win32.extension.hook.data.HookData;
import org.sf.feeling.swt.win32.extension.hook.data.MessageHookData;

public abstract class MessageHookEventListener implements HookEventListener
{

  public void acceptHookData(HookData data)
  {
    MessageHookData hookData = (MessageHookData) data;
    acceptMessageHookData(hookData);
  }

  public abstract void acceptMessageHookData(MessageHookData data);
}
TOP

Related Classes of org.sf.feeling.swt.win32.extension.hook.listener.MessageHookEventListener

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.