-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyData.java
86 lines (74 loc) · 1.79 KB
/
myData.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import java.util.ArrayList;
import java.util.List;
class myData <E> implements Data<E>{
/**
* RI: el != null && likes >= 0
*
* AF: <el, likes>
*/
private E el;
private int numLikes;
private List<String> friendsLikes;
public myData(E element)
{
this.el = element;
this.numLikes = 0;
this.friendsLikes = new ArrayList<String>();
}
// Cambia il valore di el
/**
*
* @param el != null
* @throws NullPointerException
* @effects post(this.El) = el
*
*/
public void updateData(E el)throws NullPointerException
{
if(el==null) throw new NullPointerException();
this.el=el;
}
// Prende il valore di element
/**
*
* @return copy(this.El)
*/
public E getData()
{
return this.el;
}
// Stampa il valore di element
/**
* @effects Stampa il valore <El,likes>
*/
public void Display()
{
System.out.println();
System.out.println(this.el.toString());
System.out.println(this.numLikes + " ♥");
System.out.println("------------------");
}
//restituisce il numero di likes
/**
*
* @return this.likes
*/
public int getLikes()
{
return this.numLikes;
}
//imposta i like ad un valore dato in input
/**
*
* @effects post(this.likes) = pre(this.likes) + 1
*/
public void insertLike(String friend) throws NullPointerException, DuplicateLikeException
{
if(this.friendsLikes.contains(friend)) throw new DuplicateLikeException();
this.numLikes++;
this.friendsLikes.add(friend);
}
public Data<E> cloneData() {
return (Data<E>) new myData<E>(this.getData());
}
}