Example #1
0
 private boolean isNeedsDelegateToWidget(JClassType type) {
   if (needsDelegateToWidget.containsKey(type)) {
     return true;
   } else {
     return previousBundle != null && previousBundle.isNeedsDelegateToWidget(type);
   }
 }
Example #2
0
 private boolean isNeedsDelegateToWidget(Property property) {
   if (needsDelegateToWidget.contains(property)) {
     return true;
   } else {
     return previousBundle != null && previousBundle.isNeedsDelegateToWidget(property);
   }
 }