Interface PathSearchingVirtualMachine

All Superinterfaces:
Mirror, VirtualMachine
public interface PathSearchingVirtualMachine extends VirtualMachine
A virtual machine which searches for classes through paths
Since:
1.3

Field Summary

Method Summary

Modifier and Type Method Description
String baseDirectory()
Get the base directory used for path searching.
List<String> bootClassPath()
Get the boot class path for this virtual machine.
List<String> classPath()
Get the class path for this virtual machine.

Methods declared in interface com.sun.jdi.Mirror

toString, virtualMachine

Method Details

classPath

List<String> classPath()
Get the class path for this virtual machine.
Returns:
List of components of the classpath, each represented by a String.

bootClassPath

List<String> bootClassPath()
Get the boot class path for this virtual machine.
Returns:
List of components of the boot class path, each represented by a String.

baseDirectory

String baseDirectory()
Get the base directory used for path searching. Relative directories in the class path and boot class path can be resolved through this directory name.
Returns:
the base directory.

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.jdi/com/sun/jdi/PathSearchingVirtualMachine.html