forked from elmehdilaagad/Mini-application-of-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Groupe.java
executable file
·61 lines (36 loc) · 888 Bytes
/
Groupe.java
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
61
public class Groupe {
private String nom;
private String multicastAdress;
private static int nombreUtilisateurs;
private int port;
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public String getMulticastAdress() {
return multicastAdress;
}
public void setMulticastAdress(String multicastAdress) {
this.multicastAdress = multicastAdress;
}
public static int getNombreUtilisateurs() {
return nombreUtilisateurs;
}
public static void setNombreUtilisateurs(int nombreUtilisateurs) {
Groupe.nombreUtilisateurs = nombreUtilisateurs;
}
public Groupe(String nom, String adress, int pp){
this.nom = nom;
this.multicastAdress = adress;
Groupe.nombreUtilisateurs = 0;
this.port = pp;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
}