/**
 * @author pfigueiredo
 */
KTextArea.prototype = new KInput;
KTextArea.prototype.constructor = KTextArea;
function KTextArea(parent, id) {
	KInput.call(this, parent, id, 'textarea');
	this.panel.className += ' KTextAreaPanel';
}

KTextArea.prototype.getValue = function() {
	return this.input.value;
}

KTextArea.prototype.setValue = function(value) {
	this.input.value = value;
}
