blob: 8059261fbb256c0e0dd8a339296c4375280df4ab [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2009, 2012 SpringSource, a division of VMware, Inc.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.virgo.ide.runtime.core;
import org.eclipse.jdt.launching.IVMInstall;
import org.eclipse.jst.server.core.IJavaRuntime;
/**
* Extension to {@link IServerRuntime} that allows for set some java related settings.
*
* @author Christian Dupuis
* @since 1.0.0
*/
public interface IServerRuntimeWorkingCopy extends IServerRuntime, IJavaRuntime {
/**
* Sets the {@link IVMInstall} for the given dm Server runtime
*/
void setVMInstall(IVMInstall vmInstall);
IServerRuntimeProvider getVirgoVersion();
}