KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > gui > DescEditorDialogListener


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 DescEditorDialog. This is a means to
16  * get the desc's entered into the DescEditorDialog
17  */

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

25     public void setDesc(String JavaDoc d);
26 }
27
Popular Tags