blob: 35edfcd1df5fb1fd708c028209a62a6d5fca44a1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.jst.server.tomcat.core.internal;
import java.util.List;
import org.eclipse.jdt.launching.IVMInstall;
/**
*
*
* @since 1.0
*/
public interface ITomcatRuntime {
/**
* Return the VM install (installed JRE) that this runtime is using.
*
* @return the current VM install
*/
public IVMInstall getVMInstall();
public boolean isUsingDefaultJRE();
/**
* Returns the runtime classpath that is used by this runtime.
*
* @return the runtime classpath
*/
public List getRuntimeClasspath();
}