blob: 699a2993ab89bf040801b265ef304d2d958d68d7 [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.notification.ICoreNotificationObjectCreateEntity;
import org.eclipse.viatra2.core.notification.NotificationType;
/**
* @author Andras Schmidt
*
*/
public class NotificationObjectCreateEntity extends NotificationObject
implements ICoreNotificationObjectCreateEntity {
String name;
String value;
IEntity created;
IEntity container;
public NotificationObjectCreateEntity(IEntity created, IEntity container) {
this.name = created.getName();
this.value = created.getValue();
this.created = created;
this.container = container;
addListener(created);
addListener(container);
}
public IEntity getContainer() {
return container;
}
public IEntity getCreated() {
return created;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
@Override
public NotificationType getActionTypeEnum() {
return NotificationType.ACTION_CREATE_ENTITY;
}
}