Home | History | Annotate | Download | only in io

Lines Matching refs:manifest

33  * The manifest and comment properties can optionally be set.
40 private final Manifest manifest;
53 * Creates a new JarWriter without manifest or comment.
65 Manifest manifest,
69 this.manifest = manifest;
201 // Create a new jar stream, with a manifest, if set.
202 currentJarOutputStream = manifest != null ?
203 new JarOutputStream(parentOutputStream, manifest) :