Searched defs:fromMethod (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java608 Method fromMethod = null; field in class:MappedMXBeanType.CompositeDataMXBeanType
616 fromMethod = AccessController.doPrivileged(new PrivilegedExceptionAction<Method>() {
737 if (fromMethod == null) {
742 return fromMethod.invoke(null, data);
749 fromMethod.getName() + " to convert CompositeData " +
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDefaultMXBeanMappingFactory.java985 Method fromMethod =
988 if (!Modifier.isStatic(fromMethod.getModifiers())) {
994 if (fromMethod.getReturnType() != getTargetClass()) {
997 typeName(fromMethod.getReturnType()) +
1002 this.fromMethod = fromMethod;
1017 return MethodUtil.invoke(fromMethod, null, new Object[] {cd});
1024 private Method fromMethod; field in class:DefaultMXBeanMappingFactory.CompositeBuilderViaFrom

Completed in 35 milliseconds