blob: 28a2b486e5c83ce7801197dea5cf41285b0353bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Andras Schmidt, Andras Balogh, Istvan Rath and Daniel Varro
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andras Schmidt, Andras Balogh, Istvan Rath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.core.simple.notification;
import org.eclipse.viatra2.core.IEntity;
import org.eclipse.viatra2.core.IModelElement;
import org.eclipse.viatra2.core.notification.ICoreNotificationObjectDeleteContainment;
import org.eclipse.viatra2.core.notification.NotificationType;
import org.eclipse.viatra2.core.simple.SimpleEntity;
import org.eclipse.viatra2.core.simple.SimpleModelElement;
/**
* @author Andras Schmidt
*
*/
public class NotificationObjectDeleteContainment extends NotificationObject
implements ICoreNotificationObjectDeleteContainment {
SimpleEntity parent;
SimpleModelElement child;
/**
*
*/
public NotificationObjectDeleteContainment(SimpleEntity parent,
SimpleModelElement child) {
this.parent = parent;
this.child = child;
addListener(parent);
addListener(child);
}
@Override
public NotificationType getActionTypeEnum() {
return NotificationType.ACTION_DELETE_CONTAINMENT;
}
public IEntity getParent() {
return parent;
}
public IModelElement getChild() {
return child;
}
}