Package de.xima.fc.plugin.helper
Class UnpackedJarFile
- java.lang.Object
-
- de.xima.fc.plugin.helper.UnpackedJarFile
-
- All Implemented Interfaces:
Serializable
public class UnpackedJarFile extends Object implements Serializable
Represents a JAR file that was unpacked to the file system.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnpackedJarFile(File classpathRoot, Manifest manifest, File manifestFile, boolean multirelease)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description File
getClasspathRoot()
Manifest
getManifest()
File
getManifestFile()
boolean
isMultirelease()
-
-
-
Method Detail
-
getClasspathRoot
public File getClasspathRoot()
- Returns:
- The directory corresponding to the root of the JAR classpath.
-
getManifest
public Manifest getManifest()
- Returns:
- The parsed manifest of the JAR file.
-
getManifestFile
public File getManifestFile()
- Returns:
- The file with the
MANIFEST.MF
entry of the JAR file.
-
isMultirelease
public boolean isMultirelease()
- Returns:
- Whether the unpacked JAR file was a multi-release JAR file.
-
-