Search Results
OK to copy?
Examples 1 through 10 of
12 (0.0020 seconds)
Class:
org.apache.axis.utils.cache.JavaMethod
©,
Rating:
0% of 0,
C2
Class: org.springframework.aop.framework.adapter.ThrowsAdviceInterceptor ©, Rating: 0% of 0, C2
Class: org.springframework.util.MethodInvoker ©, Rating: 0% of 0, C3
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C2
Class: org.springframework.beans.BeanUtils ©, Rating: 0% of 0, C2
Class: org.apache.axis.utils.bytecode.ClassReader ©, Rating: 0% of 0, C2
Class: org.springframework.web.servlet.mvc.multiaction.MultiActionController ©, Rating: 0% of 0, C3
Class: org.springframework.aop.framework.Cglib2AopProxy ©, Rating: 0% of 0, C3
Class: org.apache.tomcat.util.IntrospectionUtils ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory ©, Rating: 0% of 0, C2
075 */
076 public JavaMethod(Class jc, String name) {
077 Method[] methods = jc.getMethods();
078 Vector workinglist = new Vector();
079
Class: org.springframework.aop.framework.adapter.ThrowsAdviceInterceptor ©, Rating: 0% of 0, C2
059 this.throwsAdvice = throwsAdvice;
060
061 Method[] methods = throwsAdvice.getClass().getMethods();
062 exceptionHandlerHash = new HashMap();
063 for (int i = 0; i < methods.length; i++) {
Class: org.springframework.util.MethodInvoker ©, Rating: 0% of 0, C3
177 // Then try to get a method with the same number of arguments.
178 // We'll fail at runtime if in fact the arguments are not assignment compatible.
179 Method[] methods = targetClass.getMethods();
180 for (int i = 0; i < methods.length; ++i) {
181 Method method = methods[i];
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C2
235 for (Iterator it = classes.iterator(); it.hasNext();) {
236 Class clazz = (Class) it.next();
237 Method[] methods = clazz.getMethods();
238 for (int j = 0; j < methods.length; j++) {
239 if (pc.getMethodMatcher().matches(methods[j], targetClass)) {
Class: org.springframework.beans.BeanUtils ©, Rating: 0% of 0, C2
156 */
157 public static Method findMethodWithMinimalParameters(Class clazz, String methodName) {
158 Method[] methods = clazz.getMethods();
159 Method targetMethod = null;
160 for (int i = 0; i < methods.length; i++) {
Class: org.apache.axis.utils.bytecode.ClassReader ©, Rating: 0% of 0, C2
145 protected static Map findAttributeReaders(Class c) {
146 HashMap map = new HashMap();
147 Method[] methods = c.getMethods();
148
149 for (int i = 0; i < methods.length; i++) {
Class: org.springframework.web.servlet.mvc.multiaction.MultiActionController ©, Rating: 0% of 0, C3
198 // Look at all methods in the subclass, trying to find
199 // methods that are validators according to our criteria
200 Method[] methods = delegate.getClass().getMethods();
201 for (int i = 0; i < methods.length; i++) {
202 // we're looking for methods with given parameters
Class: org.springframework.aop.framework.Cglib2AopProxy ©, Rating: 0% of 0, C3
260 Callback[] fixedCallbacks = null;
261
262 Method[] methods = rootClass.getMethods();
263 fixedCallbacks = new Callback[methods.length];
264
Class: org.apache.tomcat.util.IntrospectionUtils ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory ©, Rating: 0% of 0, C2
0411 // Try all methods with this name to see if they match constructor arguments.
0412 for (int i = 0; i < factoryClass.getMethods().length; i++) {
0413 Method factoryMethod = factoryClass.getMethods()[i];
0414 if (Modifier.isStatic(factoryMethod.getModifiers()) == isStatic &&
0415 factoryMethod.getName().equals(mergedBeanDefinition.getFactoryMethodName()) &&