use of com.robotoworks.mechanoid.db.sqliteModel.SelectStatement in project mechanoid by robotoworks.
the class InsertStatementImpl method basicSetSelectStatement.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSelectStatement(SelectStatement newSelectStatement, NotificationChain msgs) {
SelectStatement oldSelectStatement = selectStatement;
selectStatement = newSelectStatement;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, SqliteModelPackage.INSERT_STATEMENT__SELECT_STATEMENT, oldSelectStatement, newSelectStatement);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of com.robotoworks.mechanoid.db.sqliteModel.SelectStatement in project mechanoid by robotoworks.
the class SelectStatementExpressionImpl method basicSetSelect.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSelect(SelectStatement newSelect, NotificationChain msgs) {
SelectStatement oldSelect = select;
select = newSelect;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, SqliteModelPackage.SELECT_STATEMENT_EXPRESSION__SELECT, oldSelect, newSelect);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations