blob: a6ae47cb5a93270b7229f6a86673aba4f709a8c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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 com.sun.jdi;
import java.util.List;
public abstract interface PathSearchingVirtualMachine extends VirtualMachine {
public abstract List classPath();
public abstract List bootClassPath();
public abstract String baseDirectory();
}