01: /*
02: * @(#) Compiled.java 1.1 03/10/10
03: *
04: * Copyright (c) 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.compiler;
10:
11: /**
12: * This interface serves to identify classes which are generated by Compiler.
13: */
14: public interface Compiled {
15: }
|