All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lgooddatepicker.optionalusertools.DateTimeChangeListener Maven / Gradle / Ivy

Go to download

Java 8 Swing Date Picker. Easy to use, good looking, nice features, and localized. Uses the JSR-310 standard.

There is a newer version: 11.2.1
Show newest version
package com.github.lgooddatepicker.optionalusertools;

import com.github.lgooddatepicker.zinternaltools.DateTimeChangeEvent;

/**
 * DateTimeChangeListener, This interface can be implemented to create a DateTimeChangeListener. Any
 * DateTimeChangeListeners that are registered with a DateTimePicker will be notified each time that
 * there is a change in the date value, the time value, or both values. Note that there is a
 * difference between the values stored in a DatePicker and TimePicker, and their text. This class
 * listens for changes to the "last valid date" and "last valid time" values, but does not listen
 * for changes in the text.
 */
public interface DateTimeChangeListener {

    /**
     * dateOrTimeChanged, This function will be called each time that there is a change in the
     * DateTimePicker date value, the time value, or both values.
     */
    public void dateOrTimeChanged(DateTimeChangeEvent event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy