01: /*
02: * BeanEnv.java
03: *
04: * Copyright (c) 2007 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: class BeanEnv {
12: BeanEnv parent;
13:
14: BeanEnv(BeanEnv parent) {
15: this.parent = parent;
16: }
17: }
|