コード例 #1
0
ファイル: EclipseType.java プロジェクト: redundent/lombok-pg
 public boolean hasMultiArgumentConstructor() {
   for (AbstractMethodDeclaration def : Each.elementIn(get().methods)) {
     if ((def instanceof ConstructorDeclaration) && Is.notEmpty(def.arguments)) return true;
   }
   return false;
 }