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

  1. package com.netscape.javascript;
  2.  
  3. class Slot implements Cloneable {
  4.    static final int HAS_GETTER = 1;
  5.    static final int HAS_SETTER = 2;
  6.    static final int HAS_RESCOPE = 4;
  7.    int intKey;
  8.    String stringKey;
  9.    Object value;
  10.    short attributes;
  11.    short flags;
  12.  
  13.    public Object clone() {
  14.       try {
  15.          return super.clone();
  16.       } catch (CloneNotSupportedException var1) {
  17.          return null;
  18.       }
  19.    }
  20. }
  21.