01: /*
02: * JACL.java --
03: *
04: * This class stores all the Jacl-specific package protected constants.
05: * The exact values should match those in tcl.h.
06: *
07: * Copyright (c) 1997 Sun Microsystems, Inc.
08: *
09: * See the file "license.terms" for information on usage and
10: * redistribution of this file, and for a DISCLAIMER OF ALL
11: * WARRANTIES.
12: *
13: * RCS: @(#) $Id: JACL.java,v 1.1.1.1 1998/10/14 21:09:21 cvsadmin Exp $
14: *
15: */
16:
17: package tcl.lang;
18:
19: /*
20: * This class holds all the Jacl-specific package protected constants.
21: */
22:
23: class JACL {
24:
25: /*
26: * Platform constants. PLATFORM is not final because we may change it for
27: * testing purposes only.
28: */
29:
30: static final int PLATFORM_UNIX = 0;
31: static final int PLATFORM_WINDOWS = 1;
32: static final int PLATFORM_MAC = 2;
33: static int PLATFORM = Util.getActualPlatform();
34:
35: } // end JACL class
|