mirror of
https://github.com/nasa/openmct.git
synced 2025-06-01 23:20:50 +00:00
[JSDoc] Document LocationCapability constructor
This commit is contained in:
parent
058a0d393d
commit
eb776e69c0
@ -4,6 +4,14 @@ define(
|
|||||||
function () {
|
function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The location capability allows a domain object to know its current
|
||||||
|
* parent, and also know its original parent. When a domain object's
|
||||||
|
* current parent is its original parent, the object is considered an
|
||||||
|
* original, otherwise it's a link.
|
||||||
|
*
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
function LocationCapability(domainObject) {
|
function LocationCapability(domainObject) {
|
||||||
this.domainObject = domainObject;
|
this.domainObject = domainObject;
|
||||||
return this;
|
return this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user