List of usage examples for javax.swing.undo AbstractUndoableEdit subclass-usage
From source file net.sf.jabref.gui.undo.UndoableInsertEntry.java
/**
* This class represents the removal of an entry. The constructor needs
* references to the database, the entry, and the map of open entry editors.
* The latter to be able to close the entry's editor if it is opened before
* the insert is undone.
*/
From source file net.sf.jabref.gui.undo.UndoableRemoveEntry.java
/**
* This class represents the removal of an entry. The constructor needs
* references to the database, the entry, and the map of open entry editors.
* The latter to be able to close the entry's editor if it is opened after
* an undo, and the removal is then undone.
*/
From source file net.sf.jabref.gui.undo.UndoableFieldChange.java
/** * This class represents a change in any field value. The relevant * information is the BibEntry, the field name, the old and the * new value. Old/new values can be null. */ public class UndoableFieldChange extends AbstractUndoableEdit {
From source file net.sf.jabref.gui.undo.UndoableInsertString.java
public class UndoableInsertString extends AbstractUndoableEdit { private static final Log LOGGER = LogFactory.getLog(UndoableInsertString.class); private final BibDatabase base; private final BasePanel panel;
From source file net.sf.jabref.gui.undo.UndoableRemoveString.java
public class UndoableRemoveString extends AbstractUndoableEdit { private final BibDatabase base; private final BibtexString string; private final BasePanel panel;
From source file ca.sqlpower.object.undo.PropertyChangeEdit.java
/**
* This is the generic edit class that dynamically modifies bean properties
* according to the PropertyChangeEvent source and the property name.
*
* @author kaiyi
*
From source file org.pmedv.blackboard.commands.DeleteEdit.java
/** * @author Matthias Pueski (29.05.2011) * */ public class DeleteEdit extends AbstractUndoableEdit {
From source file UndoDrawing.java
class UndoableDrawEdit extends AbstractUndoableEdit { UndoableDrawingPanel panel; Polygon polygon, savedPolygon; public UndoableDrawEdit(UndoableDrawingPanel panel) {
From source file MainClass.java
class UndoableToggleEdit extends AbstractUndoableEdit { private JToggleButton button; private boolean selected;
From source file UndoManagerDetails.java
class SampleUndoableEdit extends AbstractUndoableEdit { private boolean isSignificant; private boolean isReplacer;