Class LibraryInfo
- java.lang.Object
-
- org.eclipse.tycho.compiler.jdt.copied.LibraryInfo
-
public class LibraryInfo extends Object
Stores the boot path and extension directories associated with a VM.
-
-
Constructor Summary
Constructors Constructor Description LibraryInfo(String version, String[] bootpath, String[] extDirs, String[] endDirs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getBootpath()
Returns a collection of bootpath entries for this VM install.String[]
getEndorsedDirs()
Returns a collection of endorsed directory paths for this VM install.String[]
getExtensionDirs()
Returns a collection of extension directory paths for this VM install.String
getVersion()
Returns the version of this VM install.
-
-
-
Method Detail
-
getVersion
public String getVersion()
Returns the version of this VM install.- Returns:
- version
-
getExtensionDirs
public String[] getExtensionDirs()
Returns a collection of extension directory paths for this VM install.- Returns:
- a collection of absolute paths
-
getBootpath
public String[] getBootpath()
Returns a collection of bootpath entries for this VM install.- Returns:
- a collection of absolute paths
-
getEndorsedDirs
public String[] getEndorsedDirs()
Returns a collection of endorsed directory paths for this VM install.- Returns:
- a collection of absolute paths
-
-