コード例 #1
0
 /**
  * makeIdentical()
  *
  * <p>Assigns the DataStruct of an existing DO to this DO. Does not duplicate data. Just assigns
  * the reference.
  *
  * @param orig The original DO.
  */
 protected void makeIdentical(PersonalProfileDO orig) {
   super.makeIdentical(orig);
   data = orig.data;
 }