blob: 5465939cc8983b11eb6e3cf07db4ace65c3448ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009,2010 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.adapters.file;
import java.io.IOException;
import org.eclipse.emf.ecore.xmi.XMIResource;
import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl;
import org.eclipse.stem.core.common.Identifiable;
public class IdentifiableFileAdapter extends FileAdapter {
@Override
public XMIResource getResource() {
Identifiable target = (Identifiable)this.getTarget();
XMIResourceImpl xmi = (XMIResourceImpl)target.eResource();
return xmi;
}
@Override
public void delete() throws IOException {
XMIResource r = this.getResource();
r.delete(null);
}
@Override
public void rename(String newname) throws IOException {
// override
}
@Override
public Identifiable getIdentifiable() {
return (Identifiable)getTarget();
}
}