use of org.applause.lang.applauseDsl.UIComponentMemberDeclaration in project applause by applause.
the class ApplauseDslScopeProvider method _membersScope.
private IScope _membersScope(final UIComponentDeclaration type) {
EList<UIComponentMemberDeclaration> _members = type.getMembers();
IScope _scopeFor = Scopes.scopeFor(_members);
return _scopeFor;
}
use of org.applause.lang.applauseDsl.UIComponentMemberDeclaration in project applause by applause.
the class UIComponentMemberCallImpl method setComponent.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setComponent(UIComponentMemberDeclaration newComponent) {
UIComponentMemberDeclaration oldComponent = component;
component = newComponent;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ApplauseDslPackage.UI_COMPONENT_MEMBER_CALL__COMPONENT, oldComponent, component));
}
Aggregations