/******************************************************************************* * Copyright (c) 2010 Oak Ridge National Laboratory. * 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 ******************************************************************************/ package org.csstudio.swt.xygraph.undo; import org.csstudio.swt.xygraph.figures.Axis; import org.csstudio.swt.xygraph.linearscale.Range; /**The undo command for panning or zooming one axis. * @author Xihui Chen * @author Kay Kasemir (changed from AxisPanningCommand) */ public class AxisPanOrZoomCommand extends SaveStateCommand { final private Axis axis; final private Range beforeRange; private Range afterRange; public AxisPanOrZoomCommand(final String name, final Axis axis) { super(name); this.axis = axis; beforeRange = axis.getRange(); } @Override public void redo() { axis.setRange(afterRange); } @Override public void undo() { axis.setRange(beforeRange); } @Override public void saveState() { afterRange = axis.getRange(); } }