/**
  * Copy constructor
  *
  * @param c the column
  * @param r the row
  * @param nr the record to copy
  */
 protected LabelRecord(int c, int r, LabelRecord lr)
     : base(Type.LABELSST, c, r, lr)
 {
     contents = lr.contents;
 }
Example #2
0
 /**
  * Copy constructor
  *
  * @param c the column
  * @param r the row
  * @param nr the record to copy
  */
 protected LabelRecord(int c, int r, LabelRecord lr)
     : base(Type.LABELSST, c, r, lr)
 {
     contents = lr.contents;
 }