Home | History | Annotate | Download | only in widget

Lines Matching refs:action

23  * Subclass of GuidedAction that can choose a date.  The Action is editable by default; to make it
93 * @param action GuidedDatePickerAction to apply values.
95 protected final void applyDatePickerValues(GuidedDatePickerAction action) {
96 super.applyValues(action);
97 action.mDatePickerFormat = mDatePickerFormat;
98 action.mDate = mDate;
102 action.mMinDate = mMinDate;
103 action.mMaxDate = mMaxDate;
121 GuidedDatePickerAction action = new GuidedDatePickerAction();
122 applyDatePickerValues(action);
123 return action;
146 * @return Current value of DatePicker Action.
155 * @param date New value to update current value of DatePicker Action.
164 * @return Minimal value of DatePicker Action or Long.MIN_VALUE if not set.
173 * @return Maximum value of DatePicker Action or Long.MAX_VALUE if not set.