KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > orbutil > proxy > LinkedInvocationHandler


1 /*
2  * @(#)LinkedInvocationHandler.java 1.3 04/07/27
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.spi.orbutil.proxy ;
9
10 import java.lang.reflect.InvocationHandler JavaDoc ;
11 import java.lang.reflect.Proxy JavaDoc ;
12
13 /** This interface is used for InvocationHandler types that are
14  * linked to their Proxy. This is useful when the InvocationHandler
15  * needs access to data keyed by identity on the Proxy.
16  */

17 public interface LinkedInvocationHandler extends InvocationHandler JavaDoc
18 {
19     void setProxy( Proxy JavaDoc proxy ) ;
20
21     Proxy JavaDoc getProxy() ;
22 }
23
24
Popular Tags