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

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

/*******************************************************************************
* 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.MouseHookData;

public abstract class MouseHookEventListener implements HookEventListener
{

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

  public abstract void acceptMouseHookData(MouseHookData data);
}
TOP

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

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.