File: /home/padewitte/projets/webcomponents/myscript-js/src/output/analyzer/analyzerCell.js
'use strict';
(function (scope) {
/**
* Analyzer table cell
*
* @class AnalyzerCell
* @extends AnalyzerElement
* @param {Object} [obj]
* @constructor
*/
function AnalyzerCell(obj) {
scope.AnalyzerElement.call(this, obj);
if (obj) {
this.data = new scope.AnalyzerCellData(obj.data);
}
}
/**
* Inheritance property
*/
AnalyzerCell.prototype = new scope.AnalyzerElement();
/**
* Constructor property
*/
AnalyzerCell.prototype.constructor = AnalyzerCell;
/**
* Get analyzer cell data
*
* @method getData
* @returns {AnalyzerCellData}
*/
AnalyzerCell.prototype.getData = function () {
return this.data;
};
// Export
scope.AnalyzerCell = AnalyzerCell;
})(MyScript);