-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParticipants.java
More file actions
60 lines (52 loc) · 1.21 KB
/
Participants.java
File metadata and controls
60 lines (52 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* Write a description of class Participants here.
*
* @author (your name)
* @version (a version number or a date)
*/
import java.io.Serializable;
public class Participants implements Serializable
{
private String name;
private String address;
private String mob_num;
private String org_name;
private String email_id;
Participants(){
name = null;
address = null;
mob_num = null;
org_name = null;
email_id = null;
}
public void setname(String name){
this.name = name;
}
public void setaddress(String address){
this.address = address;
}
public void setmobnum(String mobnum){
this.mob_num = mobnum;
}
public void setorgname(String orgname){
this.org_name = orgname;
}
public void setemailid(String id){
this.email_id = id;
}
public String getname(){
return this.name;
}
public String getaddress(){
return this.address;
}
public String getmobnum(){
return this.mob_num;
}
public String getorgname(){
return this.org_name;
}
public String getemailid(){
return this.email_id;
}
}