Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Green2013-12-05 17:45:43 +0000
committerDavid Green2013-12-05 17:46:13 +0000
commit31124d522308ed538b9ec79ea7cfdad5f8c83699 (patch)
tree7ab06d93144225906bcee4ac3c50e439b364a62a /org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
parent5cdfcd364c152ce5f8fc823bf70be96a51586002 (diff)
downloadorg.eclipse.mylyn.tasks-31124d522308ed538b9ec79ea7cfdad5f8c83699.tar.gz
org.eclipse.mylyn.tasks-31124d522308ed538b9ec79ea7cfdad5f8c83699.tar.xz
org.eclipse.mylyn.tasks-31124d522308ed538b9ec79ea7cfdad5f8c83699.zip
423351: DefaultTaskSchema should provide a kind for DESCRIPTION
Change-Id: Iff79470691caaec50e56f29f10e4d954115b9516 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=423351
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
index 0016eb5e5..12f96bbc6 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
@@ -109,6 +109,13 @@ public final class TaskAttribute {
public static final String KIND_OPERATION = "task.common.kind.operation"; //$NON-NLS-1$
+ /**
+ * A {@link TaskAttributeMetaData#getKind() kind} used to indicate that the field is related to a description.
+ *
+ * @since 3.11
+ */
+ public static final String KIND_DESCRIPTION = "task.common.kind.description"; //$NON-NLS-1$
+
public static final String KIND_PEOPLE = "task.common.kind.people"; //$NON-NLS-1$
//public static final String META_SHOW_IN_ATTRIBUTES_SECTION = "task.meta.showInTaskEditorAttributesSection";

Back to the top