File: /home/padewitte/projets/webcomponents/myscript-js/src/output/analyzer/analyzerElementReference.js
'use strict';
(function (scope) {
/**
* Analyzer element reference
*
* @class AnalyzerElementReference
* @param {Object} [obj]
* @constructor
*/
function AnalyzerElementReference(obj) {
if (obj) {
this.uniqueID = obj.uniqueID;
this.type = obj.type;
}
}
/**
* Get unique id
*
* @method getUniqueId
* @returns {String}
*/
AnalyzerElementReference.prototype.getUniqueId = function () {
return this.uniqueID;
};
/**
* Get type
*
* @method getType
* @returns {String}
*/
AnalyzerElementReference.prototype.getType = function () {
return this.type;
};
// Export
scope.AnalyzerElementReference = AnalyzerElementReference;
})(MyScript);