01: /*
02: * $RCSfile: InterfaceProxy.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:56:51 $
10: * $State: Exp $
11: */
12: package com.sun.media.jai.rmi;
13:
14: import java.lang.reflect.InvocationHandler;
15: import java.lang.reflect.Proxy;
16:
17: /**
18: * A class which acts as a proxy for an object which is serialized as an
19: * amalgam of <code>Serializer</code>s for the various interfaces that
20: * it implements.
21: *
22: * @since 1.1
23: */
24: public final class InterfaceProxy extends Proxy {
25: public InterfaceProxy(InvocationHandler h) {
26: super(h);
27: }
28: }
|