Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2006-11-16 00:42:37 +0000
committerrelves2006-11-16 00:42:37 +0000
commit798765ec7c7c65a6f9c41e03c53463158201d9ab (patch)
tree796a8fd49dbdafb18cf4e4bc162612a654731201 /org.eclipse.mylyn.tasks.core/src
parent0faf12270ee185b17dc53822224d16cd3be794eb (diff)
downloadorg.eclipse.mylyn.tasks-798765ec7c7c65a6f9c41e03c53463158201d9ab.tar.gz
org.eclipse.mylyn.tasks-798765ec7c7c65a6f9c41e03c53463158201d9ab.tar.xz
org.eclipse.mylyn.tasks-798765ec7c7c65a6f9c41e03c53463158201d9ab.zip
ASSIGNED - bug 164536: trac editor should have a People section
https://bugs.eclipse.org/bugs/show_bug.cgi?id=164536
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryTaskAttribute.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryTaskAttribute.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryTaskAttribute.java
index 4052c68df..4ed79f5c1 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryTaskAttribute.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryTaskAttribute.java
@@ -26,6 +26,12 @@ public class RepositoryTaskAttribute implements Serializable {
private static final long serialVersionUID = 6959987055086133307L;
+ /**
+ * Key for the author of a comment.
+ *
+ * TODO remove this key: Trac uses owner to denote the assignee of a ticket
+ * and AbstractRepository has a getOwner() method which is confusing
+ */
public static final String USER_OWNER = "task.common.user.owner";
public static final String USER_CC = "task.common.user.cc";
@@ -74,6 +80,10 @@ public class RepositoryTaskAttribute implements Serializable {
public static final String ADD_SELF_CC = "task.common.addselfcc";
+ public static final String NEW_CC = "task.common.newcc";
+
+ public static final String REMOVE_CC = "task.common.removecc";
+
private boolean hidden = false;
private boolean isReadOnly = false;

Back to the top