(Class c, Map mm)
| 8933 | } |
| 8934 | |
| 8935 | static void gatherMethods(Class c, Map mm){ |
| 8936 | for(; c != null; c = c.getSuperclass()) |
| 8937 | { |
| 8938 | for(java.lang.reflect.Method m : c.getDeclaredMethods()) |
| 8939 | considerMethod(m, mm); |
| 8940 | for(java.lang.reflect.Method m : c.getMethods()) |
| 8941 | considerMethod(m, mm); |
| 8942 | } |
| 8943 | } |
| 8944 | |
| 8945 | static public Map[] gatherMethods(Class sc, ISeq interfaces){ |
| 8946 | Map allm = new HashMap(); |
no test coverage detected