Uses of Class
org.codehaus.plexus.archiver.jar.Manifest

Packages that use Manifest
org.codehaus.plexus.archiver.jar   
 

Uses of Manifest in org.codehaus.plexus.archiver.jar
 

Fields in org.codehaus.plexus.archiver.jar declared as Manifest
private  Manifest JarArchiver.configuredManifest
          merged manifests added through addConfiguredManifest
private  Manifest JarArchiver.savedConfiguredManifest
          shadow of the above if upToDate check alters the value
private  Manifest JarArchiver.filesetManifest
          merged manifests added through filesets
private  Manifest JarArchiver.originalManifest
          Manifest of original archive, will be set to null if not in update mode.
private  Manifest JarArchiver.manifest
          the manifest specified by the 'manifest' attribute *
 

Methods in org.codehaus.plexus.archiver.jar that return Manifest
static Manifest Manifest.getDefaultManifest()
          Construct a manifest from Ant's default manifest file.
private  Manifest JarArchiver.getManifest(java.io.File manifestFile)
           
private  Manifest JarArchiver.getManifest(java.io.Reader r)
           
private  Manifest JarArchiver.createManifest()
           
 

Methods in org.codehaus.plexus.archiver.jar with parameters of type Manifest
 void Manifest.merge(Manifest other)
          Merge the contents of the given manifest into this manifest
 void Manifest.merge(Manifest other, boolean overwriteMain)
          Merge the contents of the given manifest into this manifest
 void JarArchiver.addConfiguredManifest(Manifest newManifest)
          Allows the manifest for the archive file to be provided inline in the build file rather than in an external file.
private  void JarArchiver.writeManifest(ZipOutputStream zOut, Manifest manifest)