function PrimitiveWrapper(value) {
	this.setValue(value);
}
PrimitiveWrapper.prototype.setValue = function(value) {
	this.value = value;
};
PrimitiveWrapper.prototype.getValue = function() {
	return this.value;
};
PrimitiveWrapper.prototype.toString = function() {
	return String(this.value);
};