summaryrefslogtreecommitdiffstats
blob: 40eeb8b40a38d49a14d0ea3ae7eb0435ee6d6df6 (plain)
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
/*
 * Copyright (c) 2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.elements;

import com.isode.stroke.elements.Payload;
import com.isode.stroke.base.NotNull;

public class Thread extends Payload {

	private String text_ = "";
	private String parent_ = "";

	/**
	* Default Constructor.
	*/
	public Thread() {
		this("", "");
	}

	/**
	* Parameterized Constructor.
	* @param text, Not Null.
	*/
	public Thread(String text) {
		this(text, "");
	}

	/**
	* Parameterized Constructor.
	* @param text, Not Null.
	* @param parent, not Null.
	*/
	public Thread(String text, String parent) {
		NotNull.exceptIfNull(text, "text");
		NotNull.exceptIfNull(parent, "parent");
		this.text_ = text;
		this.parent_ = parent;
	}

	/**
	* @param text, not Null.
	*/
	public void setText(String text) {
		NotNull.exceptIfNull(text, "text");
		text_ = text;
	}

	/**
	* @return text, not Null.
	*/
	public String getText() {
		return text_;
	}

	/**
	* @param parent, not Null.
	*/
	public void setParent(String parent) {
		NotNull.exceptIfNull(parent, "parent");
		parent_ = parent;
	}

	/**
	* @return parent, not Null.
	*/
	public String getParent() {
		return parent_;
	}
}