Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java
index 36be81ded..26abd99fe 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/provisional/tasks/ui/wizards/AbstractQueryPageSchema.java
@@ -21,7 +21,6 @@ import java.util.Map;
import java.util.Map.Entry;
import org.eclipse.core.runtime.Assert;
-import org.eclipse.mylyn.internal.provisional.tasks.ui.wizards.AbstractQueryPageSchema.Flag;
import org.eclipse.mylyn.tasks.core.data.TaskAttribute;
import org.eclipse.mylyn.tasks.core.data.TaskAttributeMetaData;
import org.eclipse.mylyn.tasks.core.data.TaskData;
@@ -140,7 +139,7 @@ public class AbstractQueryPageSchema {
/**
* the key to use when indexing this field
- *
+ *
* @return the index key, or null if this should not be indexed
*/
public String getIndexKey() {
@@ -234,21 +233,23 @@ public class AbstractQueryPageSchema {
}
public enum Flag {
- ATTRIBUTE, OPERATION, PEOPLE, READ_ONLY, /**
+ ATTRIBUTE, OPERATION, PEOPLE, READ_ONLY,
+ /**
* A flag used to indicate that the field is related to a description.
- *
+ *
* @see TaskAttribute#KIND_DESCRIPTION
*/
- DESCRIPTION, /**
+ DESCRIPTION,
+ /**
* A flag used to indicate that the field is required.
- *
+ *
* @see TaskAttribute#META_REQUIRED
*/
REQUIRED,
/**
* A flag used to indicate that the field is required in the Query Page.
- *
+ *
* @see TaskAttribute#META_QUERY_REQUIRED
*/
QUERY_REQUIRED
@@ -353,7 +354,7 @@ public class AbstractQueryPageSchema {
/**
* Provides an iterator for all fields within the schema. Subsequent modifications to the returned collection are
* not reflected to schema.
- *
+ *
* @return all fields within the schema
*/
public Collection<Field> getFields() {

Back to the top