blob: bf7588d894000bb02ff5efeef1e07125554879cb [file] [log] [blame]
package org.eclipse.ptp.core.proxy.event;
import org.eclipse.ptp.core.proxy.event.IProxyEvent;
import org.eclipse.ptp.core.proxy.command.IProxyCommand;
/**
* @deprecated
*/
public interface IProxyEventHandler {
/**
* Handle (process) the given event.
*
* @param event - the event to process
*/
public abstract void handleEvent(IProxyCommand command, IProxyEvent event);
}