summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleListener.java
blob: ef094cbe3eaac363cc5295df54fccaaa64a9ef72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.ole.win32;


/**
 * Implementers of <code>OleListener</code> provide a simple 
 * <code>handleEvent()</code> method that is used internally 
 * by SWT to dispatch events.
 * <p>
 * After creating an instance of a class that implements this
 * interface it can be added to an <code>OleControlSite</code> 
 * using the <code>addEventListener()</code> method and removed 
 * using the <code>removeEventListener()</code> method.  When the
 * specified event occurs, <code>handleEvent()</code> will be
 * sent to the instance.
 * </p>
 *
 * @see OleControlSite
 */
public interface OleListener {

/**
 * Sent when an event that the receiver has registered for occurs.
 *
 * @param event the event which occurred
 */
public void handleEvent(OleEvent event);
}