From 1ed67629e6a9248390e66380e1d706ad06f923f8 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 24 Dec 2014 11:33:19 -0800 Subject: [PATCH] [Telemetry] Add missing JSDoc Add missing in-line documentation to ScrollingListPopulator; noticed in the context of work done for WTD-599, refactoring of time- and value-formatting for telemetry into a reusable, injectable service. --- .../scrolling/src/ScrollingListPopulator.js | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/platform/features/scrolling/src/ScrollingListPopulator.js b/platform/features/scrolling/src/ScrollingListPopulator.js index b2d1a5da72..fcbb849c9a 100644 --- a/platform/features/scrolling/src/ScrollingListPopulator.js +++ b/platform/features/scrolling/src/ScrollingListPopulator.js @@ -5,6 +5,13 @@ define( function () { "use strict"; + /** + * The ScrollingListPopulator is responsible for filling in the + * values which should appear within columns of a scrolling list + * view, based on received telemetry data. + * @constructor + * @param {Column[]} columns the columns to be populated + */ function ScrollingListPopulator(columns) { /** * Look up the most recent values from a set of data objects. @@ -21,7 +28,7 @@ define( * @param {Array} datas an array of the most recent * data objects; expected to be in the same order * as the domain objects provided at constructor - * @param {Array