forked from JavaOPs/basejava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextSection.java
More file actions
41 lines (31 loc) · 885 Bytes
/
TextSection.java
File metadata and controls
41 lines (31 loc) · 885 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
package ru.javaops.webapp.model;
import java.util.Objects;
public class TextSection extends Section {
private static final long serialVersionUID = 1L;
public static final TextSection EMPTY = new TextSection("");
private String text;
public TextSection() {
}
public TextSection(String text) {
Objects.requireNonNull(text, "text can't be NULL");
this.text = text;
}
public String getText() {
return text;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TextSection that = (TextSection) o;
return Objects.equals(text, that.text);
}
@Override
public int hashCode() {
return Objects.hash(text);
}
@Override
public String toString() {
return text;
}
}