home *** CD-ROM | disk | FTP | other *** search
- package java.util.jar;
-
- import java.io.IOException;
- import java.security.cert.Certificate;
- import java.util.zip.ZipEntry;
-
- class JarFile$JarFileEntry extends JarEntry {
- // $FF: synthetic field
- private final JarFile this$0;
-
- JarFile$JarFileEntry(JarFile var1, ZipEntry var2) {
- super(var2);
- this.this$0 = var1;
- }
-
- public Attributes getAttributes() throws IOException {
- Manifest var1 = this.this$0.getManifest();
- return var1 != null ? var1.getAttributes(((ZipEntry)this).getName()) : null;
- }
-
- public Certificate[] getCertificates() {
- if (super.certs == null && JarFile.access$000(this.this$0) != null) {
- Certificate[] var1 = JarFile.access$000(this.this$0).getCerts(((ZipEntry)this).getName());
- if (var1 != null) {
- super.certs = (Certificate[])var1.clone();
- }
- }
-
- return super.certs;
- }
- }
-