File: /home/padewitte/projets/webcomponents/myscript-js/src/output/math/mathMathMLResultElement.js
'use strict';
(function (scope) {
/**
* MathML result element
*
* @class MathMathMLResultElement
* @extends MathResultElement
* @param {Object} [obj]
* @constructor
*/
function MathMathMLResultElement(obj) {
scope.MathResultElement.call(this, obj);
if (obj) {
this.value = obj.value;
}
}
/**
* Inheritance property
*/
MathMathMLResultElement.prototype = new scope.MathResultElement();
/**
* Constructor property
*/
MathMathMLResultElement.prototype.constructor = MathMathMLResultElement;
/**
* Get value
*
* @method getValue
* @returns {String}
*/
MathMathMLResultElement.prototype.getValue = function () {
return this.value;
};
// Export
scope.MathMathMLResultElement = MathMathMLResultElement;
})(MyScript);