blob: 9805717190a4e9a402d7bdf845d783a781389f9f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.ui.internal.texteditor.quickdiff;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.source.ILineDiffInfo;
import org.eclipse.jface.text.source.ILineDiffer;
import org.eclipse.ui.texteditor.ITextEditor;
/**
* Action that will revert a line in the currently displayed document to the state in the
* reference document.
*
* @since 3.0
*/
public class RevertLineAction extends QuickDiffRestoreAction {
/** The line to be restored. Set in <code>update()</code>. */
private int fLine;
/**
* Creates a new instance.
*
* @param editor the editor this action belongs to
* @param isRulerAction <code>true</code> if this is a ruler action
*/
public RevertLineAction(ITextEditor editor, boolean isRulerAction) {
super("RevertLineAction.", editor, isRulerAction); //$NON-NLS-1$
}
@Override
public boolean computeEnablement() {
if (!super.computeEnablement())
return false;
fLine= getLastLine();
if (fLine == -1)
return false;
ILineDiffer differ= getDiffer();
if (differ == null)
return false;
ILineDiffInfo info= differ.getLineInfo(fLine);
if (info == null || info.getChangeType() == ILineDiffInfo.UNCHANGED)
return false;
if (info.getChangeType() == ILineDiffInfo.ADDED)
setText(QuickDiffMessages.RevertLineAction_delete_label);
else
setText(QuickDiffMessages.RevertLineAction_label);
return true;
}
@Override
public void runCompoundChange() {
if (!isEnabled())
return;
ILineDiffer differ= getDiffer();
if (differ != null) {
try {
differ.revertLine(fLine);
} catch (BadLocationException e) {
setStatus(e.getMessage());
}
}
}
}