Skip to main content
summaryrefslogtreecommitdiffstats
blob: c1f29534f63de80776905cbbf42ebe0652c797de (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2004, 2007 Mylyn project committers and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/

package org.eclipse.mylyn.internal.tasks.core.deprecated;

import java.io.Serializable;

/**
 * @deprecated Do not use. This class is pending for removal: see bug 237552.
 */
@Deprecated
public final class TaskComment extends AttributeContainer implements Serializable {

	private static final long serialVersionUID = 1076016406335550318L;

	/** Comment's number */
	private int number;

	private boolean hasAttachment;

	private String attachmentId;

	public TaskComment(AbstractAttributeFactory attributeFactory, int num) {
		super(attributeFactory);
		this.number = num;
	}

	/**
	 * Get this comment's number
	 * 
	 * @return This comment's number
	 */
	public int getNumber() {
		return number;
	}

	/**
	 * Set the comment number
	 * 
	 * @param number
	 *            the number of the comment
	 */
	public void setNumber(int number) {
		this.number = number;
	}

	/**
	 * Get the time that this comment was created
	 * 
	 * @return The comments creation timestamp
	 */
	public String getCreated() {
		return getAttributeValue(RepositoryTaskAttribute.COMMENT_DATE);
	}

	/**
	 * Get the author of the comment
	 * 
	 * @return The comments author
	 */
	public String getAuthor() {
		return getAttributeValue(RepositoryTaskAttribute.COMMENT_AUTHOR);
	}

	/**
	 * Get the authors real name
	 * 
	 * @return Returns author's name, or an empty string
	 */
	public String getAuthorName() {
		return getAttributeValue(RepositoryTaskAttribute.COMMENT_AUTHOR_NAME);
	}

	/**
	 * Get the text contained in the comment
	 * 
	 * @return The comments text
	 */
	public String getText() {
		return getAttributeValue(RepositoryTaskAttribute.COMMENT_TEXT);
	}

	public void setHasAttachment(boolean b) {
		this.hasAttachment = b;
	}

	public boolean hasAttachment() {
		return hasAttachment;
	}

	public void setAttachmentId(String attachmentID) {
		this.attachmentId = attachmentID;
	}

	public String getAttachmentId() {
		return attachmentId;
	}
}

Back to the top