blob: 0e4629338160ed0c0474282ead165376a0f642af [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.calculator2;
import android.text.format.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class HistoryItem {
private static final String dateFormat = "EEEMMMd";
private static final String descriptionFormat = "EEEEMMMMd";
private Date mDate;
private String mFormula;
private String mResult;
public HistoryItem(long millis, String formula, String result) {
mDate = new Date(millis);
mFormula = formula;
mResult = result;
}
public String getDateString() {
// TODO: Use DateUtils?
final Locale l = Locale.getDefault();
final String datePattern = DateFormat.getBestDateTimePattern(l, dateFormat);
return new SimpleDateFormat(datePattern, l).format(mDate);
}
public String getDateDescription() {
final Locale l = Locale.getDefault();
final String descriptionPattern = DateFormat.getBestDateTimePattern(l, descriptionFormat);
return new SimpleDateFormat(descriptionPattern, l).format(mDate);
}
public String getFormula() {
return mFormula;
}
public String getResult() {
return mResult;
}
}