コード例 #1
0
  public static Method[] getSpecialMethods(Class<?> c) {
    ArrayList<Method> result = new ArrayList<Method>();
    for (Method m : c.getDeclaredMethods()) {
      Special s = m.getAnnotation(Special.class);
      if (s != null) {
        System.out.println(
            "Method "
                + m.getName()
                + " of class "
                + c.getName()
                + " is special "
                + s.howMuch()
                + ": "
                + s.why());
        result.add(m);
      }
    }

    return result.toArray(new Method[0]);
  }