mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 21:58:13 +00:00
[JSDoc] Add missing class doc
WTD-1482.
This commit is contained in:
@ -26,6 +26,13 @@ define(
|
|||||||
function (PersistenceFailureDialog, PersistenceFailureConstants) {
|
function (PersistenceFailureDialog, PersistenceFailureConstants) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle failures to persist domain object models.
|
||||||
|
* @param $q Angular's `$q`
|
||||||
|
* @param {DialogService} dialogService the dialog service
|
||||||
|
* @constructor
|
||||||
|
* @memberof platform/persistence/queue
|
||||||
|
*/
|
||||||
function PersistenceFailureHandler($q, dialogService) {
|
function PersistenceFailureHandler($q, dialogService) {
|
||||||
// Refresh revision information for the domain object associated
|
// Refresh revision information for the domain object associated
|
||||||
// with this persistence failure
|
// with this persistence failure
|
||||||
@ -121,8 +128,7 @@ define(
|
|||||||
* to overwrite/cancel as appropriate.
|
* to overwrite/cancel as appropriate.
|
||||||
* @param {Array} failures persistence failures, as prepared
|
* @param {Array} failures persistence failures, as prepared
|
||||||
* by PersistenceQueueHandler
|
* by PersistenceQueueHandler
|
||||||
* @constructor
|
* @memberof platform/persistence/queue.PersistenceFailureHandler#
|
||||||
* @memberof platform/persistence/queue
|
|
||||||
*/
|
*/
|
||||||
handle: handleFailures
|
handle: handleFailures
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user