-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListe.java
More file actions
45 lines (34 loc) · 849 Bytes
/
Copy pathListe.java
File metadata and controls
45 lines (34 loc) · 849 Bytes
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
package com;
import java.io.Serializable;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
public class Liste implements Serializable{
private static final long serialVersionUID = 1921416915397766648L;
private String date;
private String nom;
ArrayList<ModeleVideo> liste = new ArrayList<>();
public Liste(String nom) {
SimpleDateFormat format = new SimpleDateFormat("dd/mm/yyyy HH:mm:ss");
date = format.format(new Date());
this.nom = nom;
}
public String getDate() {
return date;
}
public ArrayList<ModeleVideo> getListe() {
return liste;
}
public void setListe(ArrayList<ModeleVideo> liste) {
this.liste = liste;
}
public void setDate(String date) {
this.date = date;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
}