xref: /trunk/main/scripting/workben/installer/InstallationEvent.java (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1 package installer;
2 
3 public class InstallationEvent
4 {
5     private Object source;
6     private String message;
7     InstallationEvent(Object source, String message)
8     {
9         this.source = source;
10         this.message = message;
11     }
12 
13     public Object getSource()
14     {
15         return source;
16     }
17 
18     public String getMessage()
19     {
20         return message;
21     }
22 }
23