コード例 #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();
 }