home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / com / netscape / javascript / RescopingSlot.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-09  |  540 b   |  18 lines

  1. package com.netscape.javascript;
  2.  
  3. import java.util.Hashtable;
  4.  
  5. class RescopingSlot extends Slot {
  6.    // $FF: renamed from: ht java.util.Hashtable
  7.    Hashtable field_0;
  8.  
  9.    RescopingSlot(Slot var1, Hashtable var2) {
  10.       super.intKey = var1.intKey;
  11.       super.stringKey = var1.stringKey;
  12.       super.value = var1.value;
  13.       super.attributes = var1.attributes;
  14.       super.flags = (short)(var1.flags | 4);
  15.       this.field_0 = var2;
  16.    }
  17. }
  18.