01: /*
02: * @(#)Value.java 1.2 04/12/06
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.lang;
10:
11: /**
12: * Objects of this class are returned by Package.lookup() method.
13: *
14: * @see pnuts.lang.Package
15: */
16: public interface Value {
17:
18: /**
19: * Gets the value.
20: */
21: public Object get();
22: }
|