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