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

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DMethodUtil.java34 * Utility class to invoke com.sun.xml.internal.ws.util.MethodUtil.invoke() if available. If not (other then Oracle JDK) fallbacks
39 class MethodUtil { class
41 private static final Logger LOGGER = Logger.getLogger(MethodUtil.class.getName());
44 // com.sun.xml.internal.ws.util.MethodUtil.invoke(method, owner, args)
46 LOGGER.log(Level.FINE, "Invoking method using com.sun.xml.internal.ws.util.MethodUtil");
49 return com.sun.xml.internal.ws.util.MethodUtil.invoke(method, target, args);
H A DAbstractInstanceResolver.java69 MethodUtil.invoke(instance,method, args);
H A DInstanceResolver.java235 return MethodUtil.invoke(t, m, args );
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/privateutil/
H A DMethodUtil.java34 * Utility class to invoke com.sun.xml.internal.ws.policy.util.MethodUtil.invoke() if available. If not (other then Oracle JDK) fallbacks
37 class MethodUtil { class
39 private static final Logger LOGGER = Logger.getLogger(MethodUtil.class.getName());
43 LOGGER.log(Level.FINE, "Invoking method using com.sun.xml.internal.ws.policy.util.MethodUtil");
46 return com.sun.xml.internal.ws.policy.util.MethodUtil.invoke(method, target, args);
H A DPolicyUtils.java319 final Object result = MethodUtil.invoke(target, method,parameters);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/sei/
H A DMethodUtil.java34 * Utility class to invoke com.sun.xml.internal.ws.util.MethodUtil.invoke() if available. If not (other then Oracle JDK) fallbacks
39 class MethodUtil { class
41 private static final Logger LOGGER = Logger.getLogger(MethodUtil.class.getName());
44 // com.sun.xml.internal.ws.util.MethodUtil.invoke(method, owner, args)
46 LOGGER.log(Level.FINE, "Invoking method using com.sun.xml.internal.ws.util.MethodUtil");
49 return com.sun.xml.internal.ws.util.MethodUtil.invoke(method, target, args);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxEditor.java35 import sun.reflect.misc.MethodUtil;
109 Method method = MethodUtil.getMethod(cls, "valueOf", new Class<?>[]{String.class});
110 newValue = MethodUtil.invoke(method, oldValue, new Object[] { editor.getText()});
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DMethodElementHandler.java31 import sun.reflect.misc.MethodUtil;
106 Object value = MethodUtil.invoke(method, bean, args);
H A DPropertyElementHandler.java38 import sun.reflect.misc.MethodUtil;
173 return MethodUtil.invoke(findGetter(type, name), bean, new Object[] {});
177 return MethodUtil.invoke(findGetter(type, name, int.class), bean, new Object[] {index});
202 MethodUtil.invoke(findSetter(type, name, param), bean, new Object[] {value});
206 MethodUtil.invoke(findSetter(type, name, int.class, param), bean, new Object[] {index, value});
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DObjectView.java33 import sun.reflect.misc.MethodUtil;
155 MethodUtil.invoke(writer, comp, args);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/util/
H A DMethodUtil.java42 * This copies from sun.reflect.misc.MethodUtil to implement the trampoline
44 * the trampoline that is defined by this MethodUtil class loader.
74 public final class MethodUtil extends SecureClassLoader { class in inherits:SecureClassLoader
82 private MethodUtil() { method in class:MethodUtil
159 try (InputStream in = MethodUtil.class.getResourceAsStream(path)) {
204 throw new IOException("MethodUtil: bad name " + name);
217 return Class.forName(TRAMPOLINE, true, new MethodUtil());
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/util/
H A DMethodUtil.java42 * This copies from sun.reflect.misc.MethodUtil to implement the trampoline
44 * the trampoline that is defined by this MethodUtil class loader.
74 public final class MethodUtil extends SecureClassLoader { class in inherits:SecureClassLoader
82 private MethodUtil() { method in class:MethodUtil
159 try (InputStream in = MethodUtil.class.getResourceAsStream(path)) {
204 throw new IOException("MethodUtil: bad name " + name);
217 return Class.forName(TRAMPOLINE, true, new MethodUtil());
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DDefaultPersistenceDelegate.java163 constructorArgs[i] = MethodUtil.invoke(method, oldInstance, new Object[0]);
321 oldL = (EventListener[])MethodUtil.invoke(m, oldInstance, new Object[]{});
322 newL = (EventListener[])MethodUtil.invoke(m, newInstance, new Object[]{});
327 oldL = (EventListener[])MethodUtil.invoke(m, oldInstance, new Object[]{listenerType});
328 newL = (EventListener[])MethodUtil.invoke(m, newInstance, new Object[]{listenerType});
H A DEventHandler.java35 import sun.reflect.misc.MethodUtil;
403 Object newTarget = MethodUtil.invoke(getter, target, new Object[]{});
482 return MethodUtil.invoke(targetMethod, target, newArgs);
H A DStatement.java40 import sun.reflect.misc.MethodUtil;
304 return MethodUtil.invoke((Method)m, target, arguments);
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DStandardMBeanIntrospector.java41 import sun.reflect.misc.MethodUtil;
112 return MethodUtil.invoke(m, target, args);
H A DConvertingMethod.java36 import sun.reflect.misc.MethodUtil;
193 final Object javaReturn = MethodUtil.invoke(method, obj, javaParams);
H A DIntrospector.java59 import sun.reflect.misc.MethodUtil;
415 value = MethodUtil.invoke(element, a, null);
563 return MethodUtil.invoke(readMethod, complex, new Class<?>[0]);
H A DDefaultMXBeanMappingFactory.java76 import sun.reflect.misc.MethodUtil;
838 Object got = MethodUtil.invoke(getters[i], value, (Object[]) null);
1021 return MethodUtil.invoke(fromMethod, null, new Object[] {cd});
1127 MethodUtil.invoke(setters[i], o, new Object[] {javaItem});
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/misc/
H A DMethodUtil.java78 public final class MethodUtil extends SecureClassLoader { class in inherits:SecureClassLoader
83 private MethodUtil() { method in class:MethodUtil
353 throw new IOException("MethodUtil: bad name " + name);
367 return Class.forName(TRAMPOLINE, true, new MethodUtil());
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java34 import sun.reflect.misc.MethodUtil;
456 Method method = MethodUtil.getMethod(c.getClass(), s, null);
457 color = (Color) MethodUtil.invoke(method, c, null);
/openjdk10/jdk/src/java.management/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java48 import sun.reflect.misc.MethodUtil;
715 return c.cast(MethodUtil.invoke(valueOf, null, new Object[] {s}));
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DTransferHandler.java39 import sun.reflect.misc.MethodUtil;
868 MethodUtil.invoke(writer, comp, args);
1187 value = MethodUtil.invoke(reader, component, (Object[])null);
H A DUIDefaults.java54 import sun.reflect.misc.MethodUtil;
804 uiObject = MethodUtil.invoke(m, null, new Object[]{target});
1163 return MethodUtil.invoke(m, c, args);
/openjdk10/jdk/src/java.management/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java86 import sun.reflect.misc.MethodUtil;
1173 return MethodUtil.invoke(method, targetObject, opArgs);

Completed in 300 milliseconds