home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Java / espints / espinst.exe / classes / espresso / SemanticConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-02-28  |  1.3 KB  |  47 lines

  1. package espresso;
  2.  
  3. interface SemanticConstants {
  4.    int MethMods = 1343;
  5.    int ConstrMods = 7;
  6.    int InterfaceMethMods = 1025;
  7.    int VarMods = 223;
  8.    int InterfaceVarMods = 25;
  9.    int ClassMods = 1553;
  10.    int Nmods = 11;
  11.    int ABSTRACT = 1024;
  12.    int INTERFACE = 512;
  13.    int NATIVE = 256;
  14.    int TRANSIENT = 128;
  15.    int VOLATILE = 64;
  16.    int SYNCHRONIZED = 32;
  17.    int FINAL = 16;
  18.    int STATIC = 8;
  19.    int PROTECTED = 4;
  20.    int PRIVATE = 2;
  21.    int PUBLIC = 1;
  22.    int lastTypTag = 17;
  23.    int PACKAGETYP = 17;
  24.    int ANYTYP = 16;
  25.    int NULLTYP = 15;
  26.    int FUNCTION = 14;
  27.    int ARRAY = 13;
  28.    int VOID = 12;
  29.    int CLASS = 11;
  30.    int BOOLEAN = 10;
  31.    int DOUBLE = 9;
  32.    int FLOAT = 8;
  33.    int LONG = 7;
  34.    int INT = 6;
  35.    int SHORT = 5;
  36.    int CHAR = 4;
  37.    int BYTE = 2;
  38.    int ERRTYP = 0;
  39.    int CONSTR = 32;
  40.    int ANY = 31;
  41.    int FUN = 16;
  42.    int VAL = 12;
  43.    int VAR = 4;
  44.    int TYP = 2;
  45.    int PCK = 1;
  46. }
  47.