KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > za > org > coefficient > events > CoefficientEvent


1 package za.org.coefficient.events;
2
3 import java.io.Serializable JavaDoc;
4
5 /**
6  * Class: CoefficientEvent
7  * Description: Base class Coefficient System Event objects
8  * @author tfogwill
9  */

10 public class CoefficientEvent implements Serializable JavaDoc{
11     
12     private String JavaDoc description;
13
14     /**
15      * Contruct a CoefficientEvent
16      * @param description the event description.
17      */

18     public CoefficientEvent(String JavaDoc description) {
19         super();
20         this.description = description;
21     }
22     
23     /**
24      * Get the event description.
25      * @return Returns the event description.
26      */

27     public String JavaDoc getDescription() {
28         return description;
29     }
30 }
31
Popular Tags