blob: 8386a7ea5a74b420c2ba90a8376e595ac7f3791c [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 - Initial API and implementation
**********************************************************************/
package org.eclipse.jst.server.tomcat.core;
import java.util.List;
import org.eclipse.jdt.launching.IVMInstall;
/**
*
*/
public interface ITomcatRuntime {
/**
* Return the VM install (installed JRE) that this runtime is using.
*
* @return the current VM install
*/
public IVMInstall getVMInstall();
/**
* Returns the runtime classpath that is used by this runtime.
*
* @return the runtime classpath
*/
public List getRuntimeClasspath();
}