01: /*
02: * JavaTestSub.java --
03: *
04: * This file contains the JavaTestSub class used by java.test.
05: *
06: * Copyright (c) 1997 by Sun Microsystems, Inc.
07: *
08: * See the file "license.terms" for information on usage and redistribution
09: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10: *
11: * RCS: @(#) $Id: JavaTestSub.java,v 1.1 1999/05/10 04:09:02 dejong Exp $
12: *
13: */
14:
15: package tests;
16:
17: public class JavaTestSub extends JavaTest {
18:
19: /*
20: * We redefine some public fields in JavaTest. These fields are used
21: * to test field signatures.
22: */
23:
24: /*
25: * Instance fields.
26: */
27:
28: public int iint;
29: public String istr;
30:
31: /*
32: * Static fields.
33: */
34:
35: public static int sint;
36: public static String sstr;
37:
38: }
|