blob: 203ef2516809d9d10464217d266da97132b363bb [file] [log] [blame]
package org.eclipse.jst.server.tomcat.core;
/**********************************************************************
* 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 - Initial API and implementation
**********************************************************************/
import java.util.List;
import org.eclipse.jdt.launching.IVMInstall;
import org.eclipse.wst.server.core.model.IRuntimeDelegate;
/**
*
*/
public interface ITomcatRuntime extends IRuntimeDelegate {
public String getVMInstallTypeId();
public String getVMInstallId();
public IVMInstall getVMInstall();
public List getRuntimeClasspath();
}