File: /home/padewitte/projets/webcomponents/myscript-js/src/input/music/components/musicArpeggiateInputComponent.js
'use strict';
(function (scope) {
/**
* Arpeggiate input component
*
* @class MusicArpeggiateInputComponent
* @extends AbstractMusicInputComponent
* @constructor
*/
function MusicArpeggiateInputComponent(obj) {
scope.AbstractMusicInputComponent.call(this, obj);
this.type = 'arpeggiate';
if (obj) {
if (obj.value) {
this.value = obj.value;
}
}
}
/**
* Inheritance property
*/
MusicArpeggiateInputComponent.prototype = new scope.AbstractMusicInputComponent();
/**
* Constructor property
*/
MusicArpeggiateInputComponent.prototype.constructor = MusicArpeggiateInputComponent;
/**
* Get arpeggiate input component value
*
* @method getValue
* @returns {String}
*/
MusicArpeggiateInputComponent.prototype.getValue = function () {
return this.value;
};
/**
* Set arpeggiate input component value
*
* @method setValue
* @param {String} value
*/
MusicArpeggiateInputComponent.prototype.setValue = function (value) {
this.value = value;
};
// Export
scope.MusicArpeggiateInputComponent = MusicArpeggiateInputComponent;
})(MyScript);