copy constructor. super(other); value = other.value;
super(other); value = other.value;
standard constructor. super();
super();
returnthe value return value;
return value;
returna string describing the values I hold toStringBuffer.append("\nProp : ").append(getName()).append("->").append(value);
toStringBuffer.append("\nProp : ").append(getName()).append("->").append(value);
set the value this.value = value;
this.value = value;