コード例 #1
0
ファイル: ConnectorBundle.java プロジェクト: chinjh/vaadin
 private boolean isNeedsParamTypes(JClassType type, JMethod method) {
   if (hasMapping(needsParamTypes, type, method)) {
     return true;
   } else {
     return previousBundle != null && previousBundle.isNeedsParamTypes(type, method);
   }
 }