use of bpsim.Parameter in project jbpm by kiegroup.
the class ScenarioParametersImpl method basicSetDuration.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetDuration(Parameter newDuration, NotificationChain msgs) {
Parameter oldDuration = duration;
duration = newDuration;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.SCENARIO_PARAMETERS__DURATION, oldDuration, newDuration);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of bpsim.Parameter in project jbpm by kiegroup.
the class TimeParametersImpl method basicSetSetUpTime.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSetUpTime(Parameter newSetUpTime, NotificationChain msgs) {
Parameter oldSetUpTime = setUpTime;
setUpTime = newSetUpTime;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.TIME_PARAMETERS__SET_UP_TIME, oldSetUpTime, newSetUpTime);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of bpsim.Parameter in project jbpm by kiegroup.
the class TimeParametersImpl method basicSetValidationTime.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetValidationTime(Parameter newValidationTime, NotificationChain msgs) {
Parameter oldValidationTime = validationTime;
validationTime = newValidationTime;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.TIME_PARAMETERS__VALIDATION_TIME, oldValidationTime, newValidationTime);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of bpsim.Parameter in project jbpm by kiegroup.
the class TimeParametersImpl method basicSetReworkTime.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetReworkTime(Parameter newReworkTime, NotificationChain msgs) {
Parameter oldReworkTime = reworkTime;
reworkTime = newReworkTime;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.TIME_PARAMETERS__REWORK_TIME, oldReworkTime, newReworkTime);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of bpsim.Parameter in project jbpm by kiegroup.
the class TimeParametersImpl method basicSetProcessingTime.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetProcessingTime(Parameter newProcessingTime, NotificationChain msgs) {
Parameter oldProcessingTime = processingTime;
processingTime = newProcessingTime;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.TIME_PARAMETERS__PROCESSING_TIME, oldProcessingTime, newProcessingTime);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations