blob: c99a8096d1e660fea03f6e58456b0d5d1175b9d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.launching;
/**
* Stores the boot path and extension directories associated with a VM.
*/
public class LibraryInfo {
private String fVersion;
private String[] fBootpath;
private String[] fExtensionDirs;
private String[] fEndorsedDirs;
public LibraryInfo(String version, String[] bootpath, String[] extDirs, String[] endDirs) {
fVersion = version;
fBootpath = bootpath;
fExtensionDirs = extDirs;
fEndorsedDirs = endDirs;
}
/**
* Returns the version of this VM install.
*
* @return version
*/
public String getVersion() {
return fVersion;
}
/**
* Returns a collection of extension directory paths for this VM install.
*
* @return a collection of absolute paths
*/
public String[] getExtensionDirs() {
return fExtensionDirs;
}
/**
* Returns a collection of bootpath entries for this VM install.
*
* @return a collection of absolute paths
*/
public String[] getBootpath() {
return fBootpath;
}
/**
* Returns a collection of endorsed directory paths for this VM install.
*
* @return a collection of absolute paths
*/
public String[] getEndorsedDirs() {
return fEndorsedDirs;
}
}