blob: 9efac8c0de6052a4cc735791d8c5145be594fd3b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Akos Horvath, Gergely Varro 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:
* Akos Horvath, Gergely Varro - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.impl.gtmatcher.internal.operation;
import org.eclipse.viatra2.core.IModelManager;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.gtmatcher.exceptions.GTOperationException;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.patternmatcher.internal.MatchingFrame;
/**
* @author Akos Horvath
*
*/
abstract public class DeleteElement extends ElementManipulationOperation {
// private boolean hasBeenExecuted;
protected IModelManager manager;
protected int variableIndex;
public DeleteElement(IModelManager manager, int variableI) {
// hasBeenExecuted = false;
this.manager = manager;
this.variableIndex = variableI;
}
public boolean update(MatchingFrame frame) throws GTOperationException{
delete(frame);
return true;
}
abstract protected boolean delete(MatchingFrame frame) throws GTOperationException;
/**
* @return the variableIndex
*/
public int getVariableIndex() {
return variableIndex;
}
}