blob: a25ff91dc2c3da8edce1cd5b5503fae1635c5eb6 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.wst.server.core;
/**
* Listener interface for runtime changes.
*/
public interface IRuntimeLifecycleListener {
/**
* A new runtime has been created.
*
* @param runtime org.eclipse.wst.server.core.IRuntime
*/
public void runtimeAdded(IRuntime runtime);
/**
* An existing runtime has been updated or modified.
*
* @param runtime org.eclipse.wst.server.core.IRuntime
*/
public void runtimeChanged(IRuntime runtime);
/**
* A existing runtime has been removed.
*
* @param runtime org.eclipse.wst.server.core.IRuntime
*/
public void runtimeRemoved(IRuntime runtime);
}