package com.sun.corba.se.spi.orbutil.proxy ; import java.io.Serializable ; import java.lang.reflect.InvocationHandler ; public interface CompositeInvocationHandler extends InvocationHandler, Serializable { /** Add an invocation handler for all methods on interface interf. */ void addInvocationHandler( Class interf, InvocationHandler handler ) ; /** Set the default invocation handler to use if none of the * invocation handlers added by calls to addInvocationHandler apply. */ void setDefaultHandler( InvocationHandler handler ) ; }