blob: e3aa4d1aa0e0572100f90689f3f8484833d16e39 [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.IModelElement;
import org.eclipse.viatra2.core.notification.ICoreNotificationObjectCreateInstanceOf;
import org.eclipse.viatra2.core.notification.NotificationType;
/**
* @author Andras Schmidt
*
*/
public class NotificationObjectCreateInstanceOf extends NotificationObject
implements ICoreNotificationObjectCreateInstanceOf {
IModelElement type;
IModelElement inst;
public NotificationObjectCreateInstanceOf(IModelElement type,
IModelElement inst) {
this.type = type;
this.inst = inst;
addListener(type);
addListener(inst);
}
public IModelElement getType() {
return type;
}
public IModelElement getInstance() {
return inst;
}
@Override
public NotificationType getActionTypeEnum() {
return NotificationType.ACTION_CREATE_INSTANCEOF;
}
}