blob: ae7e5f19d8ab1feda47a31f65e9f34c1e5393c14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************/
package org.eclipse.ocl.examples.impactanalyzer.benchmark.preparation.notifications;
import java.util.List;
import org.eclipse.emf.ecore.resource.Resource;
/**
* The {@link NotificiationForModelList} encapsulates a list of notifications for one model
*
* @author Manuel Holzleitner (D049667)
*/
public class NotificationForModelList {
private final Resource model;
private final List<RawNotification> notificationList;
public NotificationForModelList(Resource model, List<RawNotification> notificationList){
this.model = model;
this.notificationList = notificationList;
}
public Resource getModel() {
return model;
}
public List<RawNotification> getNotificationList() {
return notificationList;
}
}