File: /home/padewitte/projets/webcomponents/myscript-js/src/output/music/musicHead.js
'use strict';
(function (scope) {
/**
* Music head
*
* @class MusicHead
* @extends MusicElement
* @param {Object} [obj]
* @constructor
*/
function MusicHead(obj) {
scope.MusicElement.call(this, obj);
if (obj) {
this.type = obj.type;
}
}
/**
* Inheritance property
*/
MusicHead.prototype = new scope.MusicElement();
/**
* Constructor property
*/
MusicHead.prototype.constructor = MusicHead;
/**
* Get type
*
* @method getType
* @returns {String}
*/
MusicHead.prototype.getType = function () {
return this.type;
};
// Export
scope.MusicHead = MusicHead;
})(MyScript);