use of javax.swing.undo.UndoableEdit in project cayenne by apache.
the class JCheckBoxUndoListener method actionPerformed.
@Override
public void actionPerformed(ActionEvent e) {
UndoableEdit edit = new JUndoableCheckBoxEdit((JCheckBox) e.getSource(), this);
Application.getInstance().getUndoManager().addEdit(edit);
}
Aggregations