package org.expeditee.gio.gesture.data;

public class UndoRedoGestureData extends GestureData {
	
	private boolean _redo;
	
	public UndoRedoGestureData(boolean redo)
	{
		super();
		_redo = redo;
	}
	
	public UndoRedoGestureData(UndoRedoGestureData other)
	{
		super(other);
		_redo = other._redo;
	}
	
	public boolean getRedo()
	{
		return _redo;
	}
	
	public UndoRedoGestureData clone()
	{
		return new UndoRedoGestureData(this);
	}

}
