1 package com.sun.corba.se.spi.orbutil.proxy ; 2 3 import java.io.Serializable ; 4 import java.lang.reflect.InvocationHandler ; 5 6 public interface CompositeInvocationHandler extends InvocationHandler , 7 Serializable  8 { 9 11 void addInvocationHandler( Class interf, InvocationHandler handler ) ; 12 13 16 void setDefaultHandler( InvocationHandler handler ) ; 17 } 18 | Popular Tags |