WIMM Labs


com.wimm.framework.app
Interface DatePickerDialog.OnDateSelectedListener

Enclosing class:
DatePickerDialog

public static interface DatePickerDialog.OnDateSelectedListener

This interface supports a callback function that is called when the date is selected.

Since:
WIMM SDK 1.0.0
See Also:
DatePickerDialog.setDateSelectedListener(com.wimm.framework.app.DatePickerDialog.OnDateSelectedListener)

Method Summary
 void onDateSelected(int month, int day)
          This callback function is called when the date is selected.
 

Method Detail

onDateSelected

void onDateSelected(int month,
                    int day)
This callback function is called when the date is selected. The selected date is passed to onDateSelected when it is called.

Parameters:
month - The month selected in the DatePickerDialog.
day - The day selected in the DatePickerDialog.
Since:
WIMM SDK 1.0.0

WIMM Labs