Package de.sciss.common
Class BasicCompoundEdit
- java.lang.Object
-
- javax.swing.undo.AbstractUndoableEdit
-
- javax.swing.undo.CompoundEdit
-
- de.sciss.app.AbstractCompoundEdit
-
- de.sciss.common.BasicCompoundEdit
-
- All Implemented Interfaces:
PerformableEdit,java.io.Serializable,javax.swing.undo.UndoableEdit
public class BasicCompoundEdit extends AbstractCompoundEdit
This subclass ofSyncCompoundEditis the most basic extension of the abstract class which simply puts empty bodies for the abstract methods.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BasicCompoundEdit()Creates aCompountEditobjectBasicCompoundEdit(java.lang.String presentationName)Creates aCompountEditobject with a given name
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcancelDone()Does nothingbooleanisSignificant()protected voidredoDone()Does nothingvoidsetSignificant(boolean b)protected voidundoDone()Does nothing-
Methods inherited from class de.sciss.app.AbstractCompoundEdit
addPerform, cancel, debugDump, getPresentationName, getRedoPresentationName, getResourceString, getUndoPresentationName, perform, redo, undo
-
Methods inherited from class javax.swing.undo.CompoundEdit
addEdit, canRedo, canUndo, die, end, isInProgress, lastEdit, toString
-
-
-
-
Method Detail
-
isSignificant
public boolean isSignificant()
- Specified by:
isSignificantin interfacejavax.swing.undo.UndoableEdit- Overrides:
isSignificantin classjavax.swing.undo.CompoundEdit
-
setSignificant
public void setSignificant(boolean b)
-
undoDone
protected void undoDone()
Does nothing- Specified by:
undoDonein classAbstractCompoundEdit
-
redoDone
protected void redoDone()
Does nothing- Specified by:
redoDonein classAbstractCompoundEdit
-
cancelDone
protected void cancelDone()
Does nothing- Specified by:
cancelDonein classAbstractCompoundEdit
-
-