This commit is contained in:
kin%netscape.com 1999-02-22 19:56:57 +00:00
Родитель d70809da77
Коммит f87a9a3d4a
3 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,8 @@ Transaction interface to outside world
class nsITransaction : public nsISupports{
public:
static const nsIID& IID() { static nsIID iid = NS_ITRANSACTION_IID; return iid; }
/**
* Executes the transaction.
*/

Просмотреть файл

@ -42,6 +42,8 @@ Transaction Listener interface to outside world
class nsITransactionListener : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_ITRANSACTIONLISTENER_IID; return iid; }
/**
* Called when a transaction manager is doing a transaction.
* @param aContinue if true, transaction manager continues normal processing.

Просмотреть файл

@ -42,6 +42,8 @@ Transaction Manager interface to outside world
class nsITransactionManager : public nsISupports{
public:
static const nsIID& IID() { static nsIID iid = NS_ITRANSACTIONMANAGER_IID; return iid; }
/**
* Calls a transaction's Do() method, then pushes it on the undo stack.
* <P>