mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
added GSdoc comments to class, method, and function declarations; for some classes some comments were already in the source file (not the header), in which case further comments were added here; otherwise comments were put in the headers
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19588 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
febc42573a
commit
dbdfcfab37
56 changed files with 1744 additions and 516 deletions
|
@ -191,8 +191,16 @@ NSString *NSUndoManagerWillUndoChangeNotification =
|
|||
|
||||
|
||||
|
||||
/*
|
||||
* The main part for the NSUndoManager implementation.
|
||||
/**
|
||||
* NSUndoManager provides a general mechanism supporting implementation of
|
||||
* user action "undo" in applications. Essentially, it allows you to store
|
||||
* sequences of messages and receivers that need to be invoked to undo or
|
||||
* redo an action. The various methods in this class provide for grouping
|
||||
* of sets of actions, execution of undo or redo actions, and tuning behavior
|
||||
* parameters such as the size of the undo stack. Each application entity
|
||||
* with its own editing history (e.g., a document) should have its own undo
|
||||
* manager instance. Obtain an instance through a simple
|
||||
* <code>[[NSUndoManager alloc] init]</code> message.
|
||||
*/
|
||||
@implementation NSUndoManager
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue