/* * BufferUndoListener.java - Buffer undo listener interface * :tabSize=4:indentSize=4:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 2009 Shlomy Reinstein * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.gjt.sp.jedit.buffer; /** * A interface for notification of buffer undo/redo actions. * * This interface makes it easier for undo-aware plugins to process * undo/redo actions in a buffer. * * Buffer undo listeners are added and removed from a buffer using * <code>JEditBuffer.addBufferUndoListener<code> and * <code>JEditBuffer.removeBufferUndoListener<code>, respectively. * * @author Shlomy Reinstein * @version $Id: BufferUndoListener.java 21831 2012-06-18 22:54:17Z ezust $ * @since jEdit 4.3pre18 */ public interface BufferUndoListener { //{{{ beginUndo() method /** * Called when an undo operation on the buffer begins. * @param buffer The buffer in question */ void beginUndo(JEditBuffer buffer); //}}} //{{{ endUndo() method /** * Called when an undo operation on the buffer ends. * @param buffer The buffer in question */ void endUndo(JEditBuffer buffer); //}}} //{{{ beginRedo() method /** * Called when a redo on the buffer begins. * @param buffer The buffer in question */ void beginRedo(JEditBuffer buffer); //}}} //{{{ endRedo() method /** * Called when a redo on the buffer ends. * @param buffer The buffer in question */ void endRedo(JEditBuffer buffer); //}}} }