コード例 #1
0
ファイル: ItemModel.java プロジェクト: metao1/maniana
 /** Set to same values as other item. */
 public final void copyFrom(ItemModelReadOnly other) {
   mUpdateTime = other.getUpdateTime();
   mId = other.getId();
   mText = other.getText();
   mIsCompleted = other.isCompleted();
   mIsLocked = other.isLocked();
   mColor = other.getColor();
 }
コード例 #2
0
ファイル: ItemModel.java プロジェクト: metao1/maniana
 public final void mergePropertiesFrom(ItemModelReadOnly other) {
   mIsCompleted = mIsCompleted && other.isCompleted();
   mIsLocked = mIsLocked && other.isLocked();
   // TODO: should we clear the color if mIsCompleted?
   mColor = mColor.max(other.getColor());
 }