Searched refs:InvocationHandler (Results 1 - 25 of 64) sorted by relevance

123

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/proxy/
H A DCompositeInvocationHandler.java29 import java.lang.reflect.InvocationHandler ;
31 public interface CompositeInvocationHandler extends InvocationHandler,
36 void addInvocationHandler( Class interf, InvocationHandler handler ) ;
41 void setDefaultHandler( InvocationHandler handler ) ;
H A DInvocationHandlerFactory.java28 import java.lang.reflect.InvocationHandler ;
32 /** Get an InvocationHandler.
34 InvocationHandler getInvocationHandler() ;
36 /** Get the interfaces that InvocationHandler instances
H A DLinkedInvocationHandler.java28 import java.lang.reflect.InvocationHandler ;
31 /** This interface is used for InvocationHandler types that are
32 * linked to their Proxy. This is useful when the InvocationHandler
35 public interface LinkedInvocationHandler extends InvocationHandler
H A DCompositeInvocationHandlerImpl.java35 import java.lang.reflect.InvocationHandler ;
44 private InvocationHandler defaultHandler = null ;
47 InvocationHandler handler )
52 public void setDefaultHandler( InvocationHandler handler )
63 InvocationHandler handler =
64 (InvocationHandler)classToInvocationHandler.get( cls ) ;
H A DDelegateInvocationHandlerImpl.java35 import java.lang.reflect.InvocationHandler ;
43 public static InvocationHandler create( final Object delegate )
49 return new InvocationHandler() {
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DInvocationHandler.java29 * {@code InvocationHandler} is the interface implemented by
41 public interface InvocationHandler { interface
H A DProxy.java54 * InvocationHandler handler = new MyInvocationHandler(...);
58 * getConstructor(new Class[] { InvocationHandler.class }).
79 * object, which implements the interface {@link InvocationHandler}.
81 * interfaces will be dispatched to the {@link InvocationHandler#invoke
134 * an implementation of the interface {@link InvocationHandler}, to set
166 * InvocationHandler#invoke invoke} method as described in the
226 * @see InvocationHandler
238 { InvocationHandler.class };
259 protected InvocationHandler h;
274 protected Proxy(InvocationHandler
[all...]
/openjdk7/jdk/test/java/io/Serializable/proxy/skipMissing/
H A DHandler.java32 class Handler implements InvocationHandler, Serializable {
/openjdk7/jdk/test/java/lang/reflect/Proxy/
H A DCharType.java45 static class H implements InvocationHandler {
/openjdk7/jdk/test/javax/management/monitor/
H A DMBeanServerForwarderInvocationHandler.java27 import java.lang.reflect.InvocationHandler;
34 implements InvocationHandler {
38 final InvocationHandler handler =
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DTestUtils.java43 import java.lang.reflect.InvocationHandler;
77 final InvocationHandler handler =
97 final InvocationHandler handler =
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DInvocationHandlerFactoryImpl.java28 import java.lang.reflect.InvocationHandler ;
102 public InvocationHandler getInvocationHandler()
111 InvocationHandler getInvocationHandler( DynamicStub stub )
117 InvocationHandler dynamicStubHandler =
122 InvocationHandler stubMethodHandler = new StubInvocationHandlerImpl(
H A DStubFactoryStaticImpl.java28 import java.lang.reflect.InvocationHandler ;
H A DStubFactoryDynamicBase.java28 import java.lang.reflect.InvocationHandler ;
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DProxyArrayCalls.java33 import java.lang.reflect.InvocationHandler;
46 static class DummyHandler implements InvocationHandler, Serializable {
85 proxyClass.getConstructor(new Class[] { InvocationHandler.class });
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataInvocationHandler.java32 import java.lang.reflect.InvocationHandler;
37 <p>An {@link InvocationHandler} that forwards getter methods to a
74 InvocationHandler handler =
97 whose {@code InvocationHandler} is also a {@code
108 public class CompositeDataInvocationHandler implements InvocationHandler {
240 InvocationHandler otherih = Proxy.getInvocationHandler(other);
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DMBeanServerMXBeanUnsupportedTest.java36 import java.lang.reflect.InvocationHandler;
82 implements InvocationHandler {
86 final InvocationHandler handler =
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DProxyArrays.java35 import java.lang.reflect.InvocationHandler;
44 static class DummyHandler implements InvocationHandler, Serializable {
89 proxyClass.getConstructor(new Class[] { InvocationHandler.class });
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericTypeTest.java32 import java.lang.reflect.InvocationHandler;
98 private static class NullInvocationHandler implements InvocationHandler {
104 private static final InvocationHandler nullInvocationHandler =
H A DTypeNameTest.java32 import java.lang.reflect.InvocationHandler;
61 private static InvocationHandler nullIH = new InvocationHandler() {
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DMBSFPreStartPostStartTest.java35 import java.lang.reflect.InvocationHandler;
49 public static class MBSFInvocationHandler implements InvocationHandler {
53 final InvocationHandler handler = new MBSFInvocationHandler();
/openjdk7/jdk/test/java/io/Serializable/proxy/replace/
H A DTest.java32 public class Test implements InvocationHandler, Serializable {
/openjdk7/jdk/test/java/io/Serializable/resolveProxyClass/
H A DNonPublicInterface.java36 static class Handler implements InvocationHandler, Serializable {
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationID.java33 import java.lang.reflect.InvocationHandler;
214 InvocationHandler handler = Proxy.getInvocationHandler(activator);
/openjdk7/jdk/src/share/classes/javax/management/
H A DJMX.java29 import java.lang.reflect.InvocationHandler;
144 * {@link Proxy} whose {@code InvocationHandler} is an
282 * {@link Proxy} whose {@code InvocationHandler} is an
407 InvocationHandler handler = new MBeanServerInvocationHandler(

Completed in 70 milliseconds

123