01: /*
02: * IntA.java --
03: *
04: *
05: * Copyright (c) 1997 by Sun Microsystems, Inc.
06: *
07: * See the file "license.terms" for information on usage and redistribution
08: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
09: *
10: * RCS: @(#) $Id: IntA.java,v 1.1 1999/05/10 04:09:05 dejong Exp $
11: *
12: */
13:
14: package tests.invoke;
15:
16: public interface IntA {
17: public String getStringA();
18: }
|