Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Dos Santos2013-12-13 19:26:37 +0000
committerGerrit Code Review @ Eclipse.org2013-12-18 01:13:01 +0000
commitb7eef8e0c8da174009283d5a2c7e2c518c21e9fd (patch)
tree37dced3a9d767f1784914896e6d5968d8033ecc8 /org.eclipse.mylyn.tasks.core
parent461cb61c85d4f7872c0faf5b9174d999bfcc98f5 (diff)
downloadorg.eclipse.mylyn.tasks-b7eef8e0c8da174009283d5a2c7e2c518c21e9fd.tar.gz
org.eclipse.mylyn.tasks-b7eef8e0c8da174009283d5a2c7e2c518c21e9fd.tar.xz
org.eclipse.mylyn.tasks-b7eef8e0c8da174009283d5a2c7e2c518c21e9fd.zip
378032: [api] provide editor support for required attributes
Change-Id: I711b84be94880ab04fe0bfb15464bb4c5aa6cf33 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=378032 Signed-off-by: Leo Dos Santos <leo.dos.santos@tasktop.com>
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java6
1 files changed, 5 insertions, 1 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 0f555f39a..dcea1d460 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
@@ -149,7 +149,11 @@ public final class TaskAttribute {
public static final String META_READ_ONLY = "task.meta.readOnly"; //$NON-NLS-1$
/**
- * @since 3.8
+ * Key for {@link TaskAttributeMetaData} used to specify that a field requires a value before it can be submitted to
+ * the server. This meta-data is used by the framework as a UI hint and does not guarantee that a connector will
+ * enforce compliance before attempting to post task data.
+ *
+ * @since 3.11
*/
public static final String META_REQUIRED = "task.meta.required"; //$NON-NLS-1$

Back to the top