File: /home/padewitte/projets/webcomponents/myscript-js/src/output/shape/shapeResult.js
'use strict';
(function (scope) {
/**
* Shape result
*
* @class ShapeResult
* @extends AbstractResult
* @param {Object} [obj]
* @constructor
*/
function ShapeResult(obj) {
scope.AbstractResult.call(this, obj);
if (obj) {
this.result = new scope.ShapeDocument(obj.result);
}
}
/**
* Inheritance property
*/
ShapeResult.prototype = new scope.AbstractResult();
/**
* Constructor property
*/
ShapeResult.prototype.constructor = ShapeResult;
// Export
scope.ShapeResult = ShapeResult;
})(MyScript);