Java Jar Manifest checkManifestForR(java.util.jar.JarFile jar)

Here you can find the source of checkManifestForR(java.util.jar.JarFile jar)

Description

Checks the manifest of the Jar whether there is any R source code bundled with it.

License

Apache License

Parameter

Parameter Description
jar (undocumented)

Return

(undocumented)

Declaration

static boolean checkManifestForR(java.util.jar.JarFile jar) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**// w  ww. j  a  v  a2 s . com
     * Checks the manifest of the Jar whether there is any R source code bundled with it.
     * Exposed for testing.
     * @param jar (undocumented)
     * @return (undocumented)
     */
    static boolean checkManifestForR(java.util.jar.JarFile jar) {
        throw new RuntimeException();
    }
}

Related

  1. convertManifest(Manifest manifest)
  2. createManifest()
  3. createManifest(Map customFields)
  4. createManifest(String manifestVerion, String mainClass, String jarInternalClasspath)