-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFichier.java
46 lines (39 loc) · 1013 Bytes
/
Fichier.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
package Classes;
import java.util.*;
public class Fichier implements Methods {
Scanner cl = new Scanner(System.in);
String nom ;
double taill ;
Fichier(String nom, double taill){
this.nom=nom;
this.taill= taill;
}
@Override
public String getName() {
return this.nom;
}
@Override
public double getLenght() {
return this.taill;
}
@Override
public void New(String nom, double taill) {
System.out.println("Enter your UserName");
String s1= cl.next();
System.out.println("Enter your password");
String s2= cl.next();
if(s1.equals(UserName) && s2.equals(Password) ) {
Fichier f = new Fichier(nom , taill);
Dossier.ensF.add(f);
}
}
public void Supp(Fichier f) {
System.out.println("Enter your UserName");
String s1 = cl.next();
System.out.println("Enter your Password");
String s2 = cl.next();
if(s1.equals(UserName)&& s2.equals(Password) && Dossier.ensF.contains(f)) {
Dossier.ensF.remove(f);
}
}
}