blob: 59a377e289a02506e9fb4b1cd372a8c911fa0299 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* 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:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.emc.emf.transactions;
import org.eclipse.epsilon.emc.emf.AbstractEmfModel;
import org.eclipse.epsilon.eol.models.transactions.IModelTransaction;
import org.eclipse.epsilon.eol.models.transactions.NestedModelTransactionSupport;
public class EmfModelTransactionSupport extends NestedModelTransactionSupport {
protected AbstractEmfModel model = null;
public EmfModelTransactionSupport(AbstractEmfModel model) {
this.model = model;
}
@Override
public IModelTransaction createTransaction() {
return new EmfModelTransaction(model);
}
}