blob: 61eebd73e5d1ed8fe4bb77a5057bf7806eebc72d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin 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:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.publicapi.change;
import org.eclipse.emf.common.command.AbstractCommand;
import org.eclipse.emf.ecore.resource.Resource;
/**
* Uses the {@link ChangeCommand} to record notifications.
*/
public abstract class ChangeCommand extends AbstractCommand {
private Resource resource;
private ChangedRecorder recorder;
public ChangeCommand(String name, Resource resource) {
super(name);
this.resource = resource;
}
@Override
public void execute() {
recorder.start();
doExecute();
recorder.stop();
}
/**
* Execute your operations.
*/
protected abstract void doExecute();
@Override
public void redo() {
recorder.redo();
}
@Override
protected boolean prepare() {
recorder = new ChangedRecorder(resource);
return true;
}
@Override
public void undo() {
recorder.undo();
}
@Override
public boolean canUndo() {
return super.canUndo();
}
}