home *** CD-ROM | disk | FTP | other *** search
- package sun.applet;
-
- import java.security.Identity;
-
- class AppletClassEntry {
- byte[] classBuf;
- int start;
- int len;
- String name;
- Identity[] ids;
-
- AppletClassEntry(byte[] var1, int var2, int var3, String var4, Identity[] var5) {
- this.classBuf = var1;
- this.start = var2;
- this.len = var3;
- this.name = var4;
- this.ids = var5;
- }
-
- public int hashCode() {
- return this.name.hashCode();
- }
-
- public String toString() {
- return "className=" + this.name;
- }
- }
-