Compare commits
2 commits
dc71edfeee
...
b1ac3037b2
Author | SHA1 | Date | |
---|---|---|---|
|
b1ac3037b2 | ||
|
3ee54f1abe |
4 changed files with 11 additions and 7 deletions
|
@ -2,4 +2,5 @@ package clavardage;
|
|||
|
||||
public class gestionnaireClavardage {
|
||||
sessions =
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
package defaut;
|
||||
|
||||
public class GestionListeUtilisateur {
|
||||
|
||||
|
||||
}
|
|
@ -2,11 +2,12 @@ package nom;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import TypeListeUtilisateur.java;
|
||||
|
||||
public class GestionnaireListeUtilisateur {
|
||||
|
||||
//contient la liste Utilisateur à jour
|
||||
public List<String> listeUtilisateur = new ArrayList<String>(); //créer un nouveau type : nom = (String[], int) ?
|
||||
public List<TypeListeUtilisateur> listeUtilisateur = new ArrayList<TypeListeUtilisateur>(); //créer un nouveau type : nom = (String[], int) ?
|
||||
|
||||
//Instance du gestionnaire de liste
|
||||
static private GestionnaireListeUtilisateur uniqueInstance = null;
|
||||
|
|
8
Projet_POO/src/nom/TypeListeUtilisateur.java
Normal file
8
Projet_POO/src/nom/TypeListeUtilisateur.java
Normal file
|
@ -0,0 +1,8 @@
|
|||
package nom;
|
||||
|
||||
public class TypeListeUtilisateur {
|
||||
|
||||
public String[] nom;
|
||||
public int id;
|
||||
public String[] IP;
|
||||
}
|
Loading…
Reference in a new issue