ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/MNote/uk/org/iscream/mnote/RegisterEvent.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 RegisterEvent {
4 public RegisterEvent(String name) {
5 _name = name;
6 }
7
8 public String getName() {
9 return _name;
10 }
11
12 private String _name;
13 }