blob: 937576125d90f055a6bf5809ed323c24267d65d8 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2008-2010 See4sys 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
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* See4sys - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.emf.workspace.referentialintegrity;
import org.eclipse.core.runtime.Assert;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.sphinx.emf.util.EcoreResourceUtil;
/**
*
*/
public class URIChangeNotification {
URI oldURI;
EObject newEObject;
public URIChangeNotification(EObject newEObject, URI oldURI) {
Assert.isNotNull(newEObject);
Assert.isNotNull(oldURI);
this.newEObject = newEObject;
this.oldURI = oldURI;
}
/**
* @return
*/
public EObject getNewEObject() {
return newEObject;
}
/**
* @return
*/
public URI getOldURI() {
return oldURI;
}
/**
* @return
*/
public URI getNewURI() {
return EcoreResourceUtil.getURI(newEObject);
}
}