Here you can find the source of invokedMethod(java.lang.Object closure, java.lang.Class targetClass, java.lang.String targetMethod)
Parameter | Description |
---|---|
closure | (undocumented) |
targetClass | (undocumented) |
targetMethod | (undocumented) |
static public boolean invokedMethod(java.lang.Object closure, java.lang.Class<?> targetClass, java.lang.String targetMethod)
//package com.java2s; //License from project: Apache License public class Main { /**// w w w . j a va 2s. co m * Test whether the given closure invokes the specified method in the specified class. * @param closure (undocumented) * @param targetClass (undocumented) * @param targetMethod (undocumented) * @return (undocumented) */ static public boolean invokedMethod(java.lang.Object closure, java.lang.Class<?> targetClass, java.lang.String targetMethod) { throw new RuntimeException(); } }