01: /*
02: * @(#)DynamicProxy.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.compiler;
10:
11: public abstract class DynamicProxy {
12:
13: public Object invoke(Object target) {
14: throw new RuntimeException();
15: }
16:
17: public Object invoke(Object target, Object[] args) {
18: throw new RuntimeException();
19: }
20: }
|