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