[Timeline] Add JSDoc for idMap
https://github.com/nasa/openmct/pull/962#discussion_r64676750 https://github.com/nasa/openmct/pull/962#discussion_r64677198
This commit is contained in:
@@ -27,6 +27,9 @@ define([], function () {
|
|||||||
* in a domain object's composition.
|
* in a domain object's composition.
|
||||||
* @param {number} index the zero-based index of the composition
|
* @param {number} index the zero-based index of the composition
|
||||||
* element associated with this column
|
* element associated with this column
|
||||||
|
* @param idMap an object containing key value pairs, where keys
|
||||||
|
* are domain object identifiers and values are whatever
|
||||||
|
* should appear in CSV output in their place
|
||||||
* @constructor
|
* @constructor
|
||||||
* @implements {platform/features/timeline.TimelineCSVColumn}
|
* @implements {platform/features/timeline.TimelineCSVColumn}
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -23,8 +23,11 @@
|
|||||||
define([], function () {
|
define([], function () {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A column showing domain object identifiers.
|
* A column showing identifying domain objects.
|
||||||
* @constructor
|
* @constructor
|
||||||
|
* @param idMap an object containing key value pairs, where keys
|
||||||
|
* are domain object identifiers and values are whatever
|
||||||
|
* should appear in CSV output in their place
|
||||||
* @implements {platform/features/timeline.TimelineCSVColumn}
|
* @implements {platform/features/timeline.TimelineCSVColumn}
|
||||||
*/
|
*/
|
||||||
function IdColumn(idMap) {
|
function IdColumn(idMap) {
|
||||||
|
|||||||
@@ -27,6 +27,9 @@ define([], function () {
|
|||||||
* @constructor
|
* @constructor
|
||||||
* @param {number} index the zero-based index of the composition
|
* @param {number} index the zero-based index of the composition
|
||||||
* element associated with this column
|
* element associated with this column
|
||||||
|
* @param idMap an object containing key value pairs, where keys
|
||||||
|
* are domain object identifiers and values are whatever
|
||||||
|
* should appear in CSV output in their place
|
||||||
* @implements {platform/features/timeline.TimelineCSVColumn}
|
* @implements {platform/features/timeline.TimelineCSVColumn}
|
||||||
*/
|
*/
|
||||||
function ModeColumn(index, idMap) {
|
function ModeColumn(index, idMap) {
|
||||||
|
|||||||
Reference in New Issue
Block a user