KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.sun.corba.se.spi.orbutil.proxy ;
2
3 import java.io.Serializable JavaDoc ;
4 import java.lang.reflect.InvocationHandler JavaDoc ;
5
6 public interface CompositeInvocationHandler extends InvocationHandler JavaDoc,
7     Serializable JavaDoc
8 {
9     /** Add an invocation handler for all methods on interface interf.
10      */

11     void addInvocationHandler( Class JavaDoc interf, InvocationHandler JavaDoc handler ) ;
12
13     /** Set the default invocation handler to use if none of the
14      * invocation handlers added by calls to addInvocationHandler apply.
15      */

16     void setDefaultHandler( InvocationHandler JavaDoc handler ) ;
17 }
18
Popular Tags