blob: 1ec900a7c28479a49781e0a8b1c190e51486f05a [file] [log] [blame]
/*
* Copyright (c) 2007, 2011, 2012 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.util.event;
import java.util.EventListener;
/**
* A callback interface that {@link INotifier notifiers} use to pass {@link IEvent events} to.
*
* @author Eike Stepper
* @apiviz.landmark
*/
public interface IListener extends EventListener
{
public void notifyEvent(IEvent event);
}