Searched refs:invokeMethod (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/script/
H A DInvocable.java60 public Object invokeMethod(Object thiz, String name, Object... args) method in interface:Invocable
96 * interface may be implemented using the <code>invokeMethod</code> method.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DInvoker.java96 return (T)invoke(p,invokeMethod,arg);
107 private static final Method invokeMethod; field in class:Invoker
111 invokeMethod = Provider.class.getMethod("invoke",Object.class);
/openjdk7/jdk/test/javax/swing/JSlider/6794836/
H A Dbug6794836.java58 if (invokeMethod("getHighestValueLabel", ui) != maxLabel) {
62 if (invokeMethod("getLowestValueLabel", ui) != minLabel) {
69 private static Object invokeMethod(String name, BasicSliderUI ui) throws Exception { method in class:bug6794836
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DInvocableCallable.java52 return invocable.invokeMethod(target, name, args);
/openjdk7/jdk/test/javax/script/
H A DTest8.java48 inv.invokeMethod(scriptObj, "main", "Mustang");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractMultiInstanceResolver.java68 invokeMethod(postConstructMethod,t);
88 invokeMethod(preDestroyMethod,instance);
H A DSingletonResolver.java56 invokeMethod(findAnnotatedMethod(singleton.getClass(),PostConstruct.class),singleton);
60 invokeMethod(findAnnotatedMethod(singleton.getClass(),PreDestroy.class),singleton);
H A DAbstractInstanceResolver.java111 invokeMethod(method, instance, resource);
152 protected static void invokeMethod(final @Nullable Method method, final Object instance, final Object... args) { method in class:AbstractInstanceResolver
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DAbstractBuilder.java103 invokeMethod("build" + component,
141 protected void invokeMethod(String methodName, Class<?>[] paramClasses, method in class:AbstractBuilder
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DClassType.java187 * if invokeMethod is called from the client's event handler thread. In this
188 * case, this thread will be waiting for the invokeMethod to complete and
192 * be disabled before doing the invokeMethod, or the invokeMethod should
239 Value invokeMethod(ThreadReference thread, Method method, method in interface:ClassType
H A DObjectReference.java217 * if invokeMethod is called from the client's event handler thread. In this
218 * case, this thread will be waiting for the invokeMethod to complete and
222 * be disabled before doing the invokeMethod, or the invokeMethod should
271 Value invokeMethod(ThreadReference thread, Method method, method in interface:ObjectReference
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAndInvokeTest.java28 * @summary JDWP: Cannot do an invokeMethod after a popFrames operation
65 * and then do an invokeMethod on invokeee.
126 * Verify that an invokeMethod works ok after a popFrames
136 targetClass.invokeMethod(mainThread, invokeeeMethod,
145 * Verify that an invokeMethod gets an IncompatibleThreadStateException
170 targetClass.invokeMethod(mainThread, invokeeeMethod,
H A DInvokeHangTest.java27 * @summary Backend hangs when invokeMethod is called from a JDI eventHandler
61 // This is called from the debugger via invokeMethod
150 ref.invokeMethod(thread, method, new ArrayList(), ref.INVOKE_NONVIRTUAL);
182 * invokeMethod, this 2nd bkpt is released, the debuggee is suspended, including
H A DVarargsTest.java176 fail("failure: invokeMethod got exception : " + ee);
194 invokeMethod(mainThread, mm, args, 0);
197 invokeMethod(mainThread, mm, args, 0);
H A DInvokeTest.java329 returnValue = thisObject.invokeMethod(mainThread,
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerMain.java343 private void invokeMethod( Method method ) method in class:ServerCallback
359 invokeMethod( shutdownMethod ) ;
370 invokeMethod( installMethod ) ;
379 invokeMethod( uninstallMethod ) ;
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DInterfaceImplementor.java71 return engine.invokeMethod(thiz, m.getName(), a);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java252 return invokeMethod.invoke(engine, new Object[] { func, args });
284 invokeMethod = invocableClass.getMethod("invokeFunction",
307 private Method invokeMethod; field in class:OQLEngine
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DXObjectOutputStream.java87 // invokeMethod(obj, writeExternalMethod, argList);
94 invokeMethod(obj, writeObjectMethod, arglist);
333 static private void invokeMethod(final Object obj, final Method m, method in class:XObjectOutputStream
H A DXObjectInputStream.java82 // invokeMethod(this, readObjectMethod, {this});
289 static private void invokeMethod(final Object obj, final Method m, method in class:XObjectInputStream
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DObjectReferenceImpl.java359 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, method in class:ObjectReferenceImpl
375 return type.invokeMethod(thread, method, origArguments, options);
H A DClassTypeImpl.java206 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, method in class:ClassTypeImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassTypeImpl.java177 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, method in class:ClassTypeImpl
183 vm.throwNotReadOnlyException("ClassType.invokeMethod(...)");
H A DObjectReferenceImpl.java134 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, method in class:ObjectReferenceImpl
140 vm.throwNotReadOnlyException("ObjectReference.invokeMethod(...)");
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoScriptEngine.java261 public Object invokeMethod(Object thiz, String name, Object... args) method in class:RhinoScriptEngine

Completed in 117 milliseconds

12