Esempio n. 1
0
 public List<Type> getThrownTypes(ExecutableType method) {
   List<Type> thrownTypes = new ArrayList<Type>();
   for (TypeMirror exceptionType : method.getThrownTypes()) {
     thrownTypes.add(getType(exceptionType));
   }
   return thrownTypes;
 }