blob: 110088a500e07d5b5260c5a1500fe2a6656f88ca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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:
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.mediator;
import java.util.EventListener;
/**
* This listener interface may be implemented in order to receive
* a {@link MediatorEvent} notification when a {@link Mediator}
* detects a status change in ACTF components.
*
* @see Mediator#addMediatorEventListener(IMediatorEventListener)
* @see Mediator#removeMediatorEventListener(IMediatorEventListener)
*
* @since 3.0
*/
public interface IMediatorEventListener extends EventListener{
public abstract void reportChanged(MediatorEvent event);
public abstract void reportGeneratorChanged(MediatorEvent event);
public abstract void modelserviceChanged(MediatorEvent event);
public abstract void modelserviceInputChanged(MediatorEvent event);
}