Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.util.jar.Manifest

Uses of Manifest in java.util.jar
 

Fields in java.util.jar declared as Manifest
private  Manifest JarFile.manifest
          The manifest of this file, if any, otherwise null.
private  Manifest JarInputStream.manifest
          The manifest for this file or null when there was no manifest.
 

Methods in java.util.jar that return Manifest
private  Manifest JarFile.readManifest()
          Parses and returns the manifest if it exists, otherwise returns null.
 Manifest JarFile.getManifest()
          Returns the manifest for this JarFile or null when the JarFile does not contain a manifest file.
 Manifest JarInputStream.getManifest()
          Returns the Manifest for the jar file or null if there was no Manifest.
 

Methods in java.util.jar with parameters of type Manifest
private  void JarOutputStream.writeManifest(Manifest manifest)
          Writes the manifest to a new JarEntry in this JarOutputStream with as name JarFile.MANIFEST_NAME.
 

Constructors in java.util.jar with parameters of type Manifest
Manifest(Manifest man)
          Creates a Manifest from another Manifest.
JarOutputStream(java.io.OutputStream out, Manifest man)
          Creates a new JarOutputStream with a manifest entry.