blob: 41491c23fe919e2c51dc88f16fdbfbfea0ea9d8d [file] [log] [blame]
function Parenizor(value) {
this.setValue(value);
}
Parenizor.prototype.setValue=function(value) {
this.value = value;
return this;
};
Parenizor.prototype.getValue=function() {
return this.value;
};
Parenizor.prototype.toString=function() {
return '(' + this.getvalue() + ')';
};