Package | Description |
---|---|
info.bioinfweb.libralign.model.implementations.swingundo |
Contains classes that allow to edit the underlying data source of an implementation of
AlignmentModel using swing edit objects
(implementations of UndoableEdit ). |
info.bioinfweb.libralign.model.implementations.swingundo.edits.sequence |
Contains the edit objects to manipulate sequences in an implementations of
AlignmentModel used by
SwingUndoAlignmentModel . |
info.bioinfweb.libralign.model.implementations.swingundo.edits.token |
Contains the edit objects to manipulate sets of tokens in sequences in an implementations of
AlignmentModel used by
SwingUndoAlignmentModel . |
Modifier and Type | Method and Description |
---|---|
javax.swing.undo.UndoableEdit |
SwingEditFactory.createEdit(LibrAlignSwingAlignmentEdit<T> edit)
This method is called to create new edit objects (except if a new sequence shall be added).
|
Modifier and Type | Class and Description |
---|---|
class |
SwingConcreteAddSequenceEdit<T>
Edit object that inserts a new empty sequence into an instance of
AlignmentModel . |
class |
SwingRemoveSequenceEdit<T>
Edit object that removes a sequence from an instance of
AlignmentModel . |
class |
SwingRenameSequenceEdit<T>
Edit object that renames a sequence managed by an instance of
AlignmentModel . |
class |
SwingSequenceEdit<T>
Offers basic functionality used by edits that manipulate sequences.
|
Modifier and Type | Class and Description |
---|---|
class |
SwingInsertRemoveTokensEdit<T>
Implements the insertion and removal of sequence elements in an instance of
AlignmentModel . |
class |
SwingInsertTokensEdit<T>
Edit object that inserts a set of tokens into a sequence managed by an instance of
AlignmentModel . |
class |
SwingRemoveTokensEdit<T>
Edit object that removes a set of tokens from a sequence managed by an instance of
AlignmentModel . |
class |
SwingSetTokensEdit<T>
Edit object that replaces a set of tokens in a sequence managed by an instance of
AlignmentModel . |
class |
SwingTokenEdit<T>
Offers basic functionality used by edits that manipulate sequence elements (tokens).
|