blob: 40f45b9f9f3242f1aea5d23390fb99ee99be3639 [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.content.browser.input;
import android.content.Context;
import org.chromium.content.R;
public class MonthPickerDialog extends TwoFieldDatePickerDialog {
/**
* @param context The context the dialog is to run in.
* @param callBack How the parent is notified that the date is set.
* @param year The initial year of the dialog.
* @param monthOfYear The initial month of the dialog.
*/
public MonthPickerDialog(Context context, OnValueSetListener callBack,
int year, int monthOfYear, double minMonth, double maxMonth) {
super(context, callBack, year, monthOfYear, minMonth, maxMonth);
setTitle(R.string.month_picker_dialog_title);
}
@Override
protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
return new MonthPicker(context, minValue, maxValue);
}
/**
* Gets the {@link MonthPicker} contained in this dialog.
*
* @return The calendar view.
*/
public MonthPicker getMonthPicker() {
return (MonthPicker) mPicker;
}
}