use of org.eclipse.mylyn.docs.epub.ocf.RootFiles in project mylyn.docs by eclipse.
the class ContainerImpl method basicSetRootfiles.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetRootfiles(RootFiles newRootfiles, NotificationChain msgs) {
RootFiles oldRootfiles = rootfiles;
rootfiles = newRootfiles;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OCFPackage.CONTAINER__ROOTFILES, oldRootfiles, newRootfiles);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations