// finds static and non-static methods.

static L<Method> findMethodsNamed(O obj, String method) {
  if (obj == null) ret null;
  ret findMethodsNamed(_getClass(obj), method);
}

static L<Method> findMethodsNamed(Class c, String method) {
  new L<Method> l;
  while (c != null) {
    for (Method m : c.getDeclaredMethods())
      if (m.getName().equals(method)) {
        m.setAccessible(true);
        l.add(m);
      }
    c = c.getSuperclass();
  }
  ret l;
}



static L<Method> findMethodsNamed(String method, O obj) {
  ret findMethodsNamed(obj, method);
}