ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Revision Graph
|
Root Listing
root
/
i-scream
/
experimental
/
MNote
/
uk
/
org
/
iscream
/
mnote
/
SendEvent.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
Log Message:
initial checkin of the Multicast Notification System
File Contents
#
User
Rev
Content
1
ajm
1.1
package
uk.org.iscream.mnote
;
2
3
class
SendEvent
{
4
5
public
SendEvent
(
String
message
)
{
6
_message
=
message
;
7
}
8
9
public
String
getMessage
()
{
10
return
_message
;
11
}
12
13
private
String
_message
=
null
;
14
}