use of org.applause.lang.applauseDsl.DataSourceCall in project applause by applause.
the class ScreenSectionImpl method basicSetDatasource.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetDatasource(DataSourceCall newDatasource, NotificationChain msgs) {
DataSourceCall oldDatasource = datasource;
datasource = newDatasource;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ApplauseDslPackage.SCREEN_SECTION__DATASOURCE, oldDatasource, newDatasource);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations