01: /*
02: * DownReference.java --
03: *
04: * tcljava/tests/DownReference.java
05: *
06: * Copyright (c) 1998 by Moses DeJong
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: DownReference.java,v 1.1 1999/05/10 04:09:02 dejong Exp $
12: *
13: */
14:
15: package tests;
16:
17: import java.util.*;
18:
19: public class DownReference extends Object {
20:
21: public DownReference() {
22: }
23:
24: public static Object newInstance() {
25: return new DownReference();
26: }
27:
28: public String getSecret() {
29: return "X123";
30: }
31:
32: }
|