blob: 66aef26e06eaadbadc57f1d4fdf28db3c03eeb60 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2003 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.util;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.core.model.IModule;
import org.eclipse.wst.server.core.model.IServerListener;
/**
* Helper class which implements all of the IServerListener
* interface with empty methods.
*/
public class ServerAdapter implements IServerListener {
/**
* ServerAdapter constructor comment.
*/
public ServerAdapter() {
super();
}
/**
* Called when the server configuration's sync state changes.
*
* @param server org.eclipse.wst.server.model.IServer
*/
public void configurationSyncStateChange(IServer server) { }
/**
* Called when the server isRestartNeeded() property changes.
*
* @param server org.eclipse.wst.server.model.IServer
*/
public void restartStateChange(IServer server) { }
/**
* Notification when the server state has changed.
*
* @param server org.eclipse.wst.server.model.IServer
*/
public void serverStateChange(IServer server) { }
/**
* Notification when the state of a module has changed.
*
* @param server org.eclipse.wst.server.model.IServer
*/
public void moduleStateChange(IServer server, IModule module) { }
public void modulesChanged(IServer server) { }
}