Searched defs:invoke (Results 76 - 100 of 195) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanServerDelegateImpl.java203 "Exception occurred trying to invoke the setter on the MBean");
290 * <CODE>java.lang.Exception</CODE> thrown while trying to invoke
293 public Object invoke(String actionName, Object params[], method in class:MBeanServerDelegateImpl
302 "Exception occurred trying to invoke the operation on the MBean");
H A DMBeanSupport.java75 * route getAttribute, setAttribute, and invoke to the appropriate
249 public final Object invoke(String operation, Object[] params, method in class:MBeanSupport
252 return perInterface.invoke(resource, operation, params, signature,
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DProxyRef.java59 public void invoke(java.rmi.server.RemoteCall call) throws Exception { method in class:ProxyRef
60 ref.invoke(call);
63 public Object invoke(Remote obj, Method method, Object[] params, method in class:ProxyRef
65 return ref.invoke(obj, method, params, opnum);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/
H A DBoundaryStatisticImpl.java82 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:BoundaryStatisticImpl
87 result = m.invoke(this, args);
H A DStringStatisticImpl.java92 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:StringStatisticImpl
97 result = m.invoke(this, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DGmbalMBeanNOPImpl.java68 public Object invoke(String actionName, Object[] params, String[] signature) method in class:GmbalMBeanNOPImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DLocatableAnnotation.java97 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:LocatableAnnotation
100 return method.invoke(this,args);
103 // doing method.invoke() would end up executing it,
107 return method.invoke(core,args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DInvoker.java89 public abstract Object invoke( @NotNull Packet p, @NotNull Method m, @NotNull Object... args ) throws InvocationTargetException, IllegalAccessException; method in class:Invoker
92 * Invokes {@link Provider#invoke(Object)}
95 // default slow implementation that delegates to the other invoke method.
96 return (T)invoke(p,invokeMethod,arg);
100 * Invokes {@link AsyncProvider#invoke(Object, AsyncProviderCallback, WebServiceContext)}
103 // default slow implementation that delegates to the other invoke method.
104 invoke(p, asyncInvokeMethod, arg, cbak, ctxt);
111 invokeMethod = Provider.class.getMethod("invoke",Object.class);
121 asyncInvokeMethod = AsyncProvider.class.getMethod("invoke",Object.class, AsyncProviderCallback.class, WebServiceContext.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointMethodHandler.java228 public Packet invoke(Packet req) { method in class:EndpointMethodHandler
246 Object ret = owner.getInvoker(req).invoke(req, method, args);
/openjdk7/jdk/test/java/lang/invoke/AccessControlTest_subpkg/
H A DAcquaintance_remote.java1 package test.java.lang.invoke.AccessControlTest_subpkg;
2 import test.java.lang.invoke.AccessControlTest;
3 import java.lang.invoke.*;
4 import static java.lang.invoke.MethodHandles.*;
6 // This guy tests access from outside the package test.java.lang.invoke:
/openjdk7/jdk/test/java/lang/reflect/Proxy/
H A DBoxing.java92 public Object invoke(Object proxy, Method method, Object[] args) method in class:Boxing.TestHandler
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java106 public Object invoke(Remote obj, method in class:NotSerializable.FakeRemoteRef
122 public void invoke(RemoteCall call) { method in class:NotSerializable.FakeRemoteRef
/openjdk7/jdk/src/share/classes/sun/tracing/
H A DProviderSkeleton.java126 * redirected to the {@code invoke()} method of this class (until
145 * invoke the method directly.
152 public Object invoke(Object proxy, Method method, Object[] args) { method in class:ProviderSkeleton
161 return method.invoke(this, args);
234 * exist, or we couldn't invoke the method for some reason.
244 ret = m.invoke(a);
/openjdk7/jdk/test/java/rmi/server/RemoteObject/unrecognizedRefType/
H A DUnrecognizedRefType.java97 public Object invoke(Remote obj, method in class:UnrecognizedRefType.FakeRemoteRef
113 public void invoke(RemoteCall call) { method in class:UnrecognizedRefType.FakeRemoteRef
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericTypeTest.java99 public Object invoke(Object proxy, Method method, Object[] args) method in class:GenericTypeTest.NullInvocationHandler
H A DRandomMXBeanTest.java84 public Object invoke(Object proxy, Method method, Object[] args) method in class:RandomMXBeanTest.WrapInvocationHandler
86 return method.invoke(wrapped, args);
111 public Object invoke(Object proxy, Method method, Object[] args) method in class:RandomMXBeanTest.DullInvocationHandler
149 method.invoke(proxy, new Object[0]);
170 m.invoke(merlinProxy, (Object[]) params);
/openjdk7/jdk/test/javax/management/remote/mandatory/threads/
H A DExecutorTest.java231 public Object invoke(Object proxy, Method method, Object[] args) method in class:ExecutorTest.CountInvocationHandler
239 return method.invoke(wrapped, (Object[]) args);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DBytecodeDescriptor.java26 package sun.invoke.util;
28 import java.lang.invoke.MethodType;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DReflect.java68 static Object invoke(Constructor c, Object[] args) { method in class:Reflect
96 static Object invoke(Method m, Object ob, Object[] args) { method in class:Reflect
98 return m.invoke(ob, args);
110 return m.invoke(ob, args);
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationInvocationHandler.java52 public Object invoke(Object proxy, Method method, Object[] args) { method in class:AnnotationInvocationHandler
197 hisValue = memberMethod.invoke(o);
348 // situation is handled by the invoke method.
/openjdk7/langtools/test/tools/javac/T6956462/
H A DT6956462.java81 public Tree visitMethodInvocation(MethodInvocationTree invoke, Void v) { argument
82 invoke.getMethodSelect().accept(this, v);
/openjdk7/jdk/test/sun/rmi/rmic/minimizeWrapperInstances/
H A DTest.java86 public Object invoke(Remote obj, method in class:Test.AbstractRemoteRef
101 public void invoke(RemoteCall call) { throw new AssertionError(); } method in class:Test.AbstractRemoteRef
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java26 package sun.invoke.anon;
33 import static sun.invoke.anon.ConstantPoolVisitor.*;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DCallSite.java26 package java.lang.invoke;
28 import sun.invoke.empty.Empty;
29 import static java.lang.invoke.MethodHandleStatics.*;
30 import static java.lang.invoke.MethodHandles.Lookup.IMPL_LOOKUP;
270 binding = bootstrapMethod.invoke(caller, name, type);
272 binding = bootstrapMethod.invoke(caller, name, type, info);
280 binding = bootstrapMethod.invoke(caller, name, type, argv);
283 .invoke(bootstrapMethod, caller, name, type, argv);
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerConnection.java71 * when trying to invoke the MBean's constructor.
145 * invoke the MBean's constructor.
222 * invoke the MBean's constructor.
296 * invoke the MBean's constructor.
516 * <CODE>java.lang.Exception</CODE> thrown when trying to invoke
569 * trying to invoke the getAttributes method of a Dynamic MBean.
601 * <CODE>java.lang.Exception</CODE> thrown when trying to invoke
662 * trying to invoke the getAttributes method of a Dynamic MBean.
679 * possibly-overloaded operations, it is much simpler to invoke operations
694 * int count = (Integer) mbeanServerConnection.invoke(
735 public Object invoke(ObjectName name, String operationName, method in interface:MBeanServerConnection
[all...]

Completed in 4037 milliseconds

12345678