/**
* Copies the content of the specified object into this object.
*/
public void copyObject(final BusinessValueHolder other) {
if (!(other instanceof RtfValue)) {
throw new ApplicationException("only support copying from other RTF values");
}
copyObject((RtfValue) other);
}