[JSDoc] Add annotations

Bulk-add JSDoc annotations, WTD-1482.
This commit is contained in:
Victor Woeltjen
2015-08-07 11:44:54 -07:00
parent 14f97eae9c
commit c08a460d30
239 changed files with 939 additions and 185 deletions

View File

@@ -31,6 +31,8 @@ define(
* deep copy an object to another location of their choosing.
*
* @implements Action
* @constructor
* @memberof platform/entanglement
*/
function CopyAction(locationService, copyService, context) {
@@ -90,3 +92,4 @@ define(
return CopyAction;
}
);

View File

@@ -30,6 +30,8 @@ define(
* link an object to another location of their choosing.
*
* @implements Action
* @constructor
* @memberof platform/entanglement
*/
function LinkAction(locationService, linkService, context) {
@@ -87,3 +89,4 @@ define(
return LinkAction;
}
);

View File

@@ -30,6 +30,8 @@ define(
* move an object to another location of their choosing.
*
* @implements Action
* @constructor
* @memberof platform/entanglement
*/
function MoveAction(locationService, moveService, context) {
@@ -88,3 +90,4 @@ define(
return MoveAction;
}
);