ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Revision Graph
|
Root Listing
root
/
i-scream
/
experimental
/
MNote
/
uk
/
org
/
iscream
/
mnote
/
NotificationEvent.java
Revision:
1.1
Committed:
Thu Jun 14 09:16:08 2001 UTC
(23 years, 5 months ago) by
ajm
Branch:
MAIN
CVS Tags:
HEAD
Error occurred while calculating annotation data.
Log Message:
initial checkin of the Multicast Notification System
File Contents
#
Content
1
package
uk.org.iscream.mnote
;
2
3
class
NotificationEvent
{
4
public
NotificationEvent
(
String
message
)
{
5
_message
=
message
;
6
}
7
8
public
String
getMessage
()
{
9
return
_message
;
10
}
11
12
private
String
_message
=
null
;
13
}