Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d6b5829b8dd8bee4eb555b86bb69880e4d227156 (plain) (blame)
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
/********************************************************************************
 * Copyright (c) 2008 Motorola Inc. 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
 *
 * Initial Contributor:
 * Otavio Ferranti (Motorola)
 *
 * Contributors:
 * {Name} (company) - description of contribution.
 ********************************************************************************/

package org.eclipse.tml.linuxtools.tools;

import org.eclipse.tml.linuxtools.network.IConstants.EventCode;

/**
 * @author Otavio Ferranti
 */
public interface IListener {

	/**
	 * @param notifier
	 * @param event
	 * @param result
	 */
	public void notify (INotifier notifier,
						EventCode event,
						Object result);
}

Back to the top