Skip to main content
summaryrefslogtreecommitdiffstats
blob: 865dad3b92a0357c50a0c8501e470f4ce72ad572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * 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.jst.server.core.IJavaRuntime;
/**
 * 
 */
public interface ITomcatRuntime extends IJavaRuntime {
	/**
	 * Returns <code>true</code> if this server is using the default JRE, and
	 * <code>false</code> otherwise.
	 * 
	 * @return <code>true</code> if this server is using the default JRE, and
	 *    <code>false</code> otherwise
	 */
	public boolean isUsingDefaultJRE();

	/**
	 * Returns the runtime classpath that is used by this runtime.
	 * 
	 * @return the runtime classpath
	 */
	public List getRuntimeClasspath();
}

Back to the top