KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > gui > DateEditorDialogListener


1 package sellwin.gui;
2
3 import java.util.*;
4 import java.awt.*;
5 import java.awt.event.*;
6 import javax.swing.*;
7 import javax.swing.event.*;
8
9 // SellWin http://sourceforge.net/projects/sellwincrm
10
//Contact support@open-app.com for commercial help with SellWin
11
//This software is provided "AS IS", without a warranty of any kind.
12

13 /**
14  * This interface is implemented by those containers that
15  * want to use the DateEditorDialog. THis is a means to
16  * get the date's entered into the DateEditorDialog
17  */

18 public interface DateEditorDialogListener {
19
20     /**
21      * implementers use this method to get the date
22      * entered nto a DateEditorDialog
23      * @param d the Date we are to receive
24      */

25     public void setDate(Date d);
26 }
27
Popular Tags