| |
|
| java.lang.Object java.util.zip.ZipEntry java.util.jar.JarEntry
JarEntry | public JarEntry(String name)(Code) | | Create a new JarEntry named name
Parameters: name - The name of the new JarEntry |
JarEntry | public JarEntry(ZipEntry entry)(Code) | | Create a new JarEntry using the values obtained from entry.
Parameters: entry - The ZipEntry to obtain values from. |
JarEntry | public JarEntry(JarEntry je)(Code) | | Create a new JarEntry using the values obtained from je.
Parameters: je - The JarEntry to obtain values from |
getAttributes | public Attributes getAttributes() throws IOException(Code) | | Returns the Attributes object associated with this entry or null if none
exists.
java.util.jar.Attributes Attributes for this entry exception: java.io.IOException - If an error occurs obtaining the Attributes |
getCertificates | public Certificate[] getCertificates()(Code) | | Returns an array of Certificate Objects associated with this entry or
null if none exist.
java.security.cert.Certificate[] Certificates for this entry |
getCodeSigners | public CodeSigner[] getCodeSigners()(Code) | | Returns the code signers for the jar entry. If there is no such code
signers, returns null. Only when the jar entry has been completely
verified by reading till the end of the jar entry, can the method be
called. Or else the method will return null.
the code signers for the jar entry. |
|
|
|