hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
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
package chat.module.friendcircle;
 
import chat.user.User;
import frame.object.data.ID;
import frame.util.MapList;
 
public class Comment {
 
    private String id;
    private User owner;
    private int level;
    private String content;
    private CircleObject circleObject;
    private Comment parent;
    private MapList<Comment> subComentList;
    
    
    public Comment(User owner) {
        subComentList = new MapList<Comment>();
        this.owner = owner;
    }
    
    public String addOneSubComment(User owner, String content) {
        String id = ID.newValue();
        
        Comment comment = new Comment(owner);
        comment.setId(id);
        comment.setLevel(2);
        comment.setParent(parent);
        comment.setContent(content);
        
        subComentList.add(id, comment);
        
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public void setParent(Comment parent) {
        this.parent = parent;
    }
 
    public void setLevel(int level) {
        this.level = level;
    }
 
    public User getOwner() {
        return owner;
    }
 
    public int getLevel() {
        return level;
    }
 
    public String getContent() {
        return content;
    }
 
    public CircleObject getCircleObject() {
        return circleObject;
    }
 
    public Comment getParent() {
        return parent;
    }
 
    public String getParentId() {
        if (parent == null) {
            return null;
        }
        
        return parent.getId();
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getId() {
        return id;
    }
    
}