-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextSection.java
More file actions
41 lines (30 loc) · 865 Bytes
/
TextSection.java
File metadata and controls
41 lines (30 loc) · 865 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 AbstractSection {
private static final long serialVersionUID = 1L;
private String content;
public TextSection() {
}
public TextSection(String content) {
Objects.requireNonNull(content, "content must not be null");
this.content = content;
}
public String getContent() {
return content;
}
@Override
public String toString() {
return content;
}
@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(content, that.content);
}
@Override
public int hashCode() {
return content.hashCode();
}
}