java.lang.Object
java.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
com.inductiveautomation.ignition.client.util.gui.date_selector.Time_date_selector
All Implemented Interfaces:
LocaleListener, Date_selector, ActionListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, ChangeListener

public class Time_date_selector extends JPanel implements Date_selector, ActionListener, ChangeListener, LocaleListener
This class is a GoF "Decorator" that augments the "raw" Date_selector_panel with a title that displays the time of day Create a time date selector like this:
 Date_selector selector = new Date_selector_panel(); // or other constructor.
 selector = new Time_date_selector(selector);
 
This wrapper absorbs the Date_selector.CHANGE_ACTION events: listeners that you register on the wrapper will be sent only Date_selector.SELECT_ACTION events. (Listeners that are registered on the wrapped Date_selector object will be notified of all events, however.
See Also: