mirror of
https://github.com/nasa/openmct.git
synced 2025-05-06 10:38:23 +00:00
[JSDoc] Remove obsolete module references
WTD-1482
This commit is contained in:
parent
c08a460d30
commit
eaaa1a19ca
@ -21,12 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the CreateWizard, used by the CreateAction to
|
|
||||||
* populate the form shown in dialog based on the created type.
|
|
||||||
*
|
|
||||||
* @module core/action/create-wizard
|
|
||||||
*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
@ -39,7 +33,6 @@ define(
|
|||||||
* the initial parent for the created object, in the dialog
|
* the initial parent for the created object, in the dialog
|
||||||
* @memberof platform/commonUI/browse
|
* @memberof platform/commonUI/browse
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof module:core/action/create-wizard
|
|
||||||
*/
|
*/
|
||||||
function CreateWizard(type, parent, policyService) {
|
function CreateWizard(type, parent, policyService) {
|
||||||
var model = type.getInitialModel(),
|
var model = type.getInitialModel(),
|
||||||
|
@ -21,12 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the PropertiesDialog, used by the PropertiesAction to
|
|
||||||
* populate the form shown in dialog based on the created type.
|
|
||||||
*
|
|
||||||
* @module common/actions/properties-dialog
|
|
||||||
*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
@ -39,7 +33,6 @@ define(
|
|||||||
* @param {DomainObject} the object for which properties will be set
|
* @param {DomainObject} the object for which properties will be set
|
||||||
* @memberof platform/commonUI/edit
|
* @memberof platform/commonUI/edit
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof module:common/actions/properties-dialog
|
|
||||||
*/
|
*/
|
||||||
function PropertiesDialog(type, model) {
|
function PropertiesDialog(type, model) {
|
||||||
var properties = type.getProperties();
|
var properties = type.getProperties();
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* An editable domain object cache stores domain objects that have been
|
* An editable domain object cache stores domain objects that have been
|
||||||
* made editable, in a group that can be saved all-at-once. This supports
|
* made editable, in a group that can be saved all-at-once. This supports
|
||||||
* Edit mode, which is launched for a specific object but may contain
|
* Edit mode, which is launched for a specific object but may contain
|
||||||
@ -32,8 +32,6 @@
|
|||||||
* to ensure that changes made while in edit mode do not propagate up
|
* to ensure that changes made while in edit mode do not propagate up
|
||||||
* to the objects used in browse mode (or to persistence) until the user
|
* to the objects used in browse mode (or to persistence) until the user
|
||||||
* initiates a Save.
|
* initiates a Save.
|
||||||
*
|
|
||||||
* @module editor/object/editable-domain-object-cache
|
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
["./EditableModelCache"],
|
["./EditableModelCache"],
|
||||||
@ -53,7 +51,6 @@ define(
|
|||||||
* @param $q Angular's $q, for promise handling
|
* @param $q Angular's $q, for promise handling
|
||||||
* @memberof platform/commonUI/edit
|
* @memberof platform/commonUI/edit
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof module:editor/object/editable-domain-object-cache
|
|
||||||
*/
|
*/
|
||||||
function EditableDomainObjectCache(EditableDomainObject, $q) {
|
function EditableDomainObjectCache(EditableDomainObject, $q) {
|
||||||
var cache = new EditableModelCache(),
|
var cache = new EditableModelCache(),
|
||||||
|
@ -21,14 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Type implementation. Defines a type object which wraps a
|
|
||||||
* type definition and exposes useful methods for inspecting
|
|
||||||
* that type and understanding its relationship to other
|
|
||||||
* types.
|
|
||||||
*
|
|
||||||
* @module core/type/type-impl
|
|
||||||
*/
|
|
||||||
define(
|
define(
|
||||||
['./TypeProperty'],
|
['./TypeProperty'],
|
||||||
function (TypeProperty) {
|
function (TypeProperty) {
|
||||||
@ -41,7 +33,6 @@ define(
|
|||||||
* @param {TypeDefinition} typeDef an object containing
|
* @param {TypeDefinition} typeDef an object containing
|
||||||
* key-value pairs describing a type and its
|
* key-value pairs describing a type and its
|
||||||
* relationship to other types.
|
* relationship to other types.
|
||||||
* @memberof module:core/type/type-impl
|
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof platform/core
|
* @memberof platform/core
|
||||||
*/
|
*/
|
||||||
|
@ -21,12 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Type property. Defines a mutable or displayable property
|
|
||||||
* associated with objects of a given type.
|
|
||||||
*
|
|
||||||
* @module core/type/type-property
|
|
||||||
*/
|
|
||||||
define(
|
define(
|
||||||
['./TypePropertyConversion'],
|
['./TypePropertyConversion'],
|
||||||
function (TypePropertyConversion) {
|
function (TypePropertyConversion) {
|
||||||
@ -38,7 +32,6 @@ define(
|
|||||||
*
|
*
|
||||||
* @memberof platform/core
|
* @memberof platform/core
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof module:core/type/type-property
|
|
||||||
*/
|
*/
|
||||||
function TypeProperty(propertyDefinition) {
|
function TypeProperty(propertyDefinition) {
|
||||||
// Load an appropriate conversion
|
// Load an appropriate conversion
|
||||||
|
@ -21,12 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines type property conversions, used to convert values from
|
|
||||||
* a domain object model to values displayable in a form, and
|
|
||||||
* vice versa.
|
|
||||||
* @module core/type/type-property-conversion
|
|
||||||
*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
@ -31,10 +31,11 @@ define(
|
|||||||
* values which should appear within columns of a event list
|
* values which should appear within columns of a event list
|
||||||
* view, based on received telemetry data.
|
* view, based on received telemetry data.
|
||||||
* @constructor
|
* @constructor
|
||||||
|
* @memberof platform/features/events
|
||||||
* @param {Column[]} columns the columns to be populated
|
* @param {Column[]} columns the columns to be populated
|
||||||
*/
|
*/
|
||||||
function EventListPopulator(columns) {
|
function EventListPopulator(columns) {
|
||||||
/**
|
/*
|
||||||
* Look up the most recent values from a set of data objects.
|
* Look up the most recent values from a set of data objects.
|
||||||
* Returns an array of objects in the order in which data
|
* Returns an array of objects in the order in which data
|
||||||
* should be displayed; each element is an object with
|
* should be displayed; each element is an object with
|
||||||
@ -116,6 +117,7 @@ define(
|
|||||||
/**
|
/**
|
||||||
* Get the text which should appear in headers for the
|
* Get the text which should appear in headers for the
|
||||||
* provided columns.
|
* provided columns.
|
||||||
|
* @memberof platform/features/events.EventListPopulator
|
||||||
* @returns {string[]} column headers
|
* @returns {string[]} column headers
|
||||||
*/
|
*/
|
||||||
getHeaders: function () {
|
getHeaders: function () {
|
||||||
@ -130,6 +132,7 @@ define(
|
|||||||
* provided the data sets; these should match
|
* provided the data sets; these should match
|
||||||
* index-to-index with the `datas` argument
|
* index-to-index with the `datas` argument
|
||||||
* @param {number} count the number of rows to populate
|
* @param {number} count the number of rows to populate
|
||||||
|
* @memberof platform/features/events.EventListPopulator
|
||||||
* @returns {string[][]} an array of rows, each of which
|
* @returns {string[][]} an array of rows, each of which
|
||||||
* is an array of values which should appear
|
* is an array of values which should appear
|
||||||
* in that row
|
* in that row
|
||||||
|
@ -27,6 +27,11 @@ define(
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a single line or trace of a plot.
|
||||||
|
* @param {{PlotLineBuffer}} buffer the plot buffer
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
function PlotLine(buffer) {
|
function PlotLine(buffer) {
|
||||||
|
|
||||||
// Insert a time-windowed data series into the buffer
|
// Insert a time-windowed data series into the buffer
|
||||||
@ -70,8 +75,7 @@ define(
|
|||||||
* Add a point to this plot line.
|
* Add a point to this plot line.
|
||||||
* @param {number} domainValue the domain value
|
* @param {number} domainValue the domain value
|
||||||
* @param {number} rangeValue the range value
|
* @param {number} rangeValue the range value
|
||||||
* @constructor
|
* @memberof platform/features/plot.PlotLine
|
||||||
* @memberof platform/features/plot
|
|
||||||
*/
|
*/
|
||||||
addPoint: function (domainValue, rangeValue) {
|
addPoint: function (domainValue, rangeValue) {
|
||||||
var index;
|
var index;
|
||||||
@ -100,6 +104,7 @@ define(
|
|||||||
* to use when looking up data from this series
|
* to use when looking up data from this series
|
||||||
* @param {string} [range] the key indicating which range
|
* @param {string} [range] the key indicating which range
|
||||||
* to use when looking up data from this series
|
* to use when looking up data from this series
|
||||||
|
* @memberof platform/features/plot.PlotLine
|
||||||
*/
|
*/
|
||||||
addSeries: function (series, domain, range) {
|
addSeries: function (series, domain, range) {
|
||||||
// Should try to add via insertion if a
|
// Should try to add via insertion if a
|
||||||
|
@ -22,7 +22,8 @@
|
|||||||
/*global define,Promise*/
|
/*global define,Promise*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module defining GestureConstants. Created by vwoeltje on 11/17/14.
|
* Constants used by domain object gestures.
|
||||||
|
* @class platform/representation.GestureConstants
|
||||||
*/
|
*/
|
||||||
define({
|
define({
|
||||||
/**
|
/**
|
||||||
@ -30,22 +31,25 @@ define({
|
|||||||
* composition of domain objects. (e.g. in event.dataTransfer.setData
|
* composition of domain objects. (e.g. in event.dataTransfer.setData
|
||||||
* calls.)
|
* calls.)
|
||||||
* @constructor
|
* @constructor
|
||||||
* @memberof platform/representation
|
* @memberof platform/representation.GestureConstants
|
||||||
*/
|
*/
|
||||||
MCT_DRAG_TYPE: 'mct-domain-object-id',
|
MCT_DRAG_TYPE: 'mct-domain-object-id',
|
||||||
/**
|
/**
|
||||||
* The string identifier for the data type used for drag-and-drop
|
* The string identifier for the data type used for drag-and-drop
|
||||||
* composition of domain objects, by object instance (passed through
|
* composition of domain objects, by object instance (passed through
|
||||||
* the dndService)
|
* the dndService)
|
||||||
|
* @memberof platform/representation.GestureConstants
|
||||||
*/
|
*/
|
||||||
MCT_EXTENDED_DRAG_TYPE: 'mct-domain-object',
|
MCT_EXTENDED_DRAG_TYPE: 'mct-domain-object',
|
||||||
/**
|
/**
|
||||||
* An estimate for the dimensions of a context menu, used for
|
* An estimate for the dimensions of a context menu, used for
|
||||||
* positioning.
|
* positioning.
|
||||||
|
* @memberof platform/representation.GestureConstants
|
||||||
*/
|
*/
|
||||||
MCT_MENU_DIMENSIONS: [ 170, 200 ],
|
MCT_MENU_DIMENSIONS: [ 170, 200 ],
|
||||||
/**
|
/**
|
||||||
* Identifier for drop events.
|
* Identifier for drop events.
|
||||||
|
* @memberof platform/representation.GestureConstants
|
||||||
*/
|
*/
|
||||||
MCT_DROP_EVENT: 'mctDrop'
|
MCT_DROP_EVENT: 'mctDrop'
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user