KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)InvocationHandlerFactory.java 1.7 04/07/13
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                                                                                 
12 public interface InvocationHandlerFactory
13 {
14     /** Get an InvocationHandler.
15      */

16     InvocationHandler JavaDoc getInvocationHandler() ;
17                                                                                 
18     /** Get the interfaces that InvocationHandler instances
19      * produced by this InvocationHandlerFactory support.
20      */

21     Class JavaDoc[] getProxyInterfaces() ;
22 }
23
24
25
Popular Tags