-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDVD.java
More file actions
129 lines (109 loc) · 3.12 KB
/
DVD.java
File metadata and controls
129 lines (109 loc) · 3.12 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package DVD.dto;
import java.time.LocalDate;
import java.util.Objects;
/**
*
* @author Kelsey
*/
public class DVD {
private String title;
private String releaseDate;
private LocalDate date;
public LocalDate getDate() {
return date;
}
public void setDate(LocalDate date) {
this.date = date;
}
private String mpaaRating;
private String directorName;
private String studio;
private String userRating;
public DVD(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getReleaseDate() {
return releaseDate;
}
public void setReleaseDate(String releaseDate) {
this.releaseDate = releaseDate;
}
public String getMpaaRating() {
return mpaaRating;
}
public void setMpaaRating(String mpaaRating) {
this.mpaaRating = mpaaRating;
}
public String getDirectorName() {
return directorName;
}
public void setDirectorName(String directorName) {
this.directorName = directorName;
}
public String getStudio() {
return studio;
}
public void setStudio(String studio) {
this.studio = studio;
}
public String getUserRating() {
return userRating;
}
public void setUserRating(String userRating) {
this.userRating = userRating;
}
@Override
public int hashCode() {
int hash = 3;
hash = 23 * hash + Objects.hashCode(this.title);
hash = 23 * hash + Objects.hashCode(this.releaseDate);
hash = 23 * hash + Objects.hashCode(this.mpaaRating);
hash = 23 * hash + Objects.hashCode(this.directorName);
hash = 23 * hash + Objects.hashCode(this.studio);
hash = 23 * hash + Objects.hashCode(this.userRating);
return hash;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final DVD other = (DVD) obj;
if (!Objects.equals(this.title, other.title)) {
return false;
}
if (!Objects.equals(this.releaseDate, other.releaseDate)) {
return false;
}
if (!Objects.equals(this.mpaaRating, other.mpaaRating)) {
return false;
}
if (!Objects.equals(this.directorName, other.directorName)) {
return false;
}
if (!Objects.equals(this.studio, other.studio)) {
return false;
}
if (!Objects.equals(this.userRating, other.userRating)) {
return false;
}
return true;
}
}