blob: 626942f2fbe6e9513e0b1bad335608d6725fbab0 [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;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.wst.server.core.model.IServerConfigurationWorkingCopyDelegate;
/**
*
* <p>This interface is not intended to be implemented by clients.</p>
*/
public interface IServerConfigurationWorkingCopy extends IServerConfiguration, IElementWorkingCopy {
public IServerConfiguration getOriginal();
public IServerConfigurationWorkingCopyDelegate getWorkingCopyDelegate();
public IServerConfiguration save(IProgressMonitor monitor) throws CoreException;
}