repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update dev300-m58
[ooovba.git]
/
scripting
/
workben
/
installer
/
InstallationEvent.java
blob
d00dbe45a53e5abfe7dc12ed542f8f762263944f
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
}