コード例 #1
0
 @Override
 public boolean beforeMethodCall(final MethodCall call) {
   for (TypeCheckingExtension handler : handlers) {
     if (handler.beforeMethodCall(call)) return true;
   }
   return false;
 }