Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/OpenRepositoryTask.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/ContentOutlineTools.java6
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java8
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskPlanningEditor.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskSpellingReconcileStrategy.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/OpenSearchResultAction.java8
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/RepositorySearchResultView.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterDescription.java6
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterId.java18
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterPriority.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskElementLabelProvider.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskKeyComparator.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListView.java6
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/DatePicker.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/SynchronizeQueryJob.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TasksUiUtil.java6
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java4
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskEditorInput.java2
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskOutlineNode.java6
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskSelection.java18
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditorInput.java2
21 files changed, 54 insertions, 54 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/OpenRepositoryTask.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/OpenRepositoryTask.java
index fc46a3d05..7a06d62cc 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/OpenRepositoryTask.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/OpenRepositoryTask.java
@@ -65,7 +65,7 @@ public class OpenRepositoryTask extends Action implements IWorkbenchWindowAction
}
/**
- * Selected a repository, so try to obtain the task using id
+ * Selected a repository, so try to obtain the task using taskId
*/
private void openRemoteTask(RemoteTaskSelectionDialog dlg) {
String[] selectedIds = dlg.getSelectedIds();
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/ContentOutlineTools.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/ContentOutlineTools.java
index 3fda0da2d..20e85aa99 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/ContentOutlineTools.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/ContentOutlineTools.java
@@ -21,7 +21,7 @@ public class ContentOutlineTools {
public static final String OFFLINE_SERVER_DEFAULT = "[local]";
/**
- * Returns a unique handle for the bugzilla selection. Contains the bug id,
+ * Returns a unique handle for the bugzilla selection. Contains the bug taskId,
* the bug server, and (if applicable) the comment number.
*
* @param taskSelection
@@ -57,8 +57,8 @@ public class ContentOutlineTools {
// return getHandle(taskData.getRepositoryUrl(), taskData.getId());
// }
//
-// public static String getHandle(String server, String id) {
-// return server + ";" + id;
+// public static String getHandle(String server, String taskId) {
+// return server + ";" + taskId;
// }
// public static String getName(RepositoryTaskData taskData) {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java
index 9bd8531d6..759110d90 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java
@@ -51,15 +51,15 @@ public interface IRepositoryTaskSelection extends ISelection {
public void setContents(String contents);
/**
- * @return The id of the Bugzilla object that the selection was on.
+ * @return The taskId of the Bugzilla object that the selection was on.
*/
public String getId();
/**
- * Sets the id of the Bugzilla object that the selection was on.
+ * Sets the taskId of the Bugzilla object that the selection was on.
*
- * @param id
- * The id of the bug.
+ * @param taskId
+ * The taskId of the bug.
*/
public void setId(String id);
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskPlanningEditor.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskPlanningEditor.java
index 2b5ad959c..18911a865 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskPlanningEditor.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskPlanningEditor.java
@@ -411,7 +411,7 @@ public class TaskPlanningEditor extends TaskFormPage {
// task = taskEditorInput.getTask();
// if (task == null) {
// MessageDialog.openError(parent.getShell(), "No such task", "No task
- // exists with this id");
+ // exists with this taskId");
// return null;
// }
//
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskSpellingReconcileStrategy.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskSpellingReconcileStrategy.java
index 41c16380f..3c91d407e 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskSpellingReconcileStrategy.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskSpellingReconcileStrategy.java
@@ -110,7 +110,7 @@ public class TaskSpellingReconcileStrategy implements IReconcilerExtension, IRec
}
}
- /** The id of the problem */
+ /** The taskId of the problem */
public static final int SPELLING_PROBLEM_ID = 0x80000000;
/** The document to operate on. */
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/OpenSearchResultAction.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/OpenSearchResultAction.java
index 171134873..c0cf8fac1 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/OpenSearchResultAction.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/OpenSearchResultAction.java
@@ -55,16 +55,16 @@ public class OpenSearchResultAction extends Action {
// go through each of the selected items and show it in an editor
for (Iterator<AbstractQueryHit> it = selection.iterator(); it.hasNext();) {
AbstractQueryHit repositoryHit = it.next();
- TasksUiUtil.openRepositoryTask(repositoryHit.getRepositoryUrl(), repositoryHit.getId(), repositoryHit.getUrl());
+ TasksUiUtil.openRepositoryTask(repositoryHit.getRepositoryUrl(), repositoryHit.getTaskId(), repositoryHit.getUrl());
// try {
- // int id = Integer.parseInt(repositoryHit.getId());
+ // int taskId = Integer.parseInt(repositoryHit.getId());
// String bugUrl =
// BugzillaServerFacade.getBugUrlWithoutLogin(repositoryHit.getRepositoryUrl(),
- // id);
+ // taskId);
// TasksUiUtil.openRepositoryTask(repositoryHit.getRepositoryUrl(),
// "" + repositoryHit.getId(), bugUrl);
// } catch (NumberFormatException e) {
- // MylarStatusHandler.fail(e, "Could not open, malformed id: " +
+ // MylarStatusHandler.fail(e, "Could not open, malformed taskId: " +
// repositoryHit.getId(), true);
// }
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/RepositorySearchResultView.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/RepositorySearchResultView.java
index dc4eda750..1dc0819d1 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/RepositorySearchResultView.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/RepositorySearchResultView.java
@@ -213,7 +213,7 @@ public class RepositorySearchResultView extends AbstractTextSearchViewPage imple
throws PartInitException {
AbstractQueryHit repositoryHit = (AbstractQueryHit) match.getElement();
- TasksUiUtil.openRepositoryTask(repositoryHit.getRepositoryUrl(), repositoryHit.getId(), repositoryHit.getUrl());
+ TasksUiUtil.openRepositoryTask(repositoryHit.getRepositoryUrl(), repositoryHit.getTaskId(), repositoryHit.getUrl());
}
@Override
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterDescription.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterDescription.java
index a9ecda211..927430330 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterDescription.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterDescription.java
@@ -40,9 +40,9 @@ public class SearchResultSorterDescription extends ViewerSorter {
AbstractQueryHit entry1 = (AbstractQueryHit) e1;
AbstractQueryHit entry2 = (AbstractQueryHit) e2;
- // NOTE we just comparing ids here, once summary and id separated
+ // NOTE we just comparing ids here, once summary and taskId separated
// they should have their own column/sorter.
- return taskKeyComparator.compare(entry1.getId(), entry2.getId());
+ return taskKeyComparator.compare(entry1.getTaskId(), entry2.getTaskId());
// return taskKeyComparator.compare(entry1.getDescription(),
// entry2.getDescription());
} catch (Exception ignored) {
@@ -66,7 +66,7 @@ public class SearchResultSorterDescription extends ViewerSorter {
public int category(Object element) {
try {
AbstractQueryHit hit = (AbstractQueryHit) element;
- return Integer.parseInt(hit.getId());
+ return Integer.parseInt(hit.getTaskId());
} catch (Exception ignored) {
// ignore if
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterId.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterId.java
index bfc2e4095..fb7edc7a5 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterId.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterId.java
@@ -16,14 +16,14 @@ import org.eclipse.jface.viewers.ViewerSorter;
import org.eclipse.mylar.tasks.core.AbstractQueryHit;
/**
- * Sorts search results (AbstractQueryHit) by id.
+ * Sorts search results (AbstractQueryHit) by taskId.
*/
public class SearchResultSorterId extends ViewerSorter {
/**
* Returns a negative, zero, or positive number depending on whether the
- * first bug's id is less than, equal to, or greater than the second bug's
- * id.
+ * first bug's taskId is less than, equal to, or greater than the second bug's
+ * taskId.
* <p>
*
* @see org.eclipse.jface.viewers.ViewerSorter#compare(org.eclipse.jface.viewers.Viewer,
@@ -32,15 +32,15 @@ public class SearchResultSorterId extends ViewerSorter {
@Override
public int compare(Viewer viewer, Object e1, Object e2) {
try {
- // cast the object and get its bug id
+ // cast the object and get its bug taskId
AbstractQueryHit entry1 = (AbstractQueryHit) e1;
- Integer id1 = Integer.parseInt(entry1.getId());
+ Integer id1 = Integer.parseInt(entry1.getTaskId());
- // cast the other object and get its bug id
+ // cast the other object and get its bug taskId
AbstractQueryHit entry2 = (AbstractQueryHit) e2;
- Integer id2 = Integer.parseInt(entry2.getId());
+ Integer id2 = Integer.parseInt(entry2.getTaskId());
- // if neither is null, compare the bug id's
+ // if neither is null, compare the bug taskId's
if (id1 != null && id2 != null) {
return id1.compareTo(id2);
}
@@ -65,7 +65,7 @@ public class SearchResultSorterId extends ViewerSorter {
public int category(Object element) {
try {
AbstractQueryHit hit = (AbstractQueryHit) element;
- return Integer.parseInt(hit.getId());
+ return Integer.parseInt(hit.getTaskId());
} catch (Exception ignored) {
// ignore
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterPriority.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterPriority.java
index 139a17180..82d1993de 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterPriority.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSorterPriority.java
@@ -76,7 +76,7 @@ public class SearchResultSorterPriority extends ViewerSorter {
public int category(Object element) {
try {
AbstractQueryHit hit = (AbstractQueryHit) element;
- return Integer.parseInt(hit.getId());
+ return Integer.parseInt(hit.getTaskId());
} catch (Exception ignored) {
// ignore if there is a problem
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskElementLabelProvider.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskElementLabelProvider.java
index 14afce5ae..9bf06bafb 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskElementLabelProvider.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskElementLabelProvider.java
@@ -115,7 +115,7 @@ public class TaskElementLabelProvider extends LabelProvider implements IColorPro
if (hit.getIdLabel() != null) {
return hit.getIdLabel() + NO_SUMMARY_AVAILABLE;
} else {
- return hit.getId() + NO_SUMMARY_AVAILABLE;
+ return hit.getTaskId() + NO_SUMMARY_AVAILABLE;
}
} else if (!pattern.matcher(hit.getSummary()).matches() && hit.getIdLabel() != null
&& !hit.getIdLabel().equals("")) {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskKeyComparator.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskKeyComparator.java
index d7decaca2..88e2868c6 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskKeyComparator.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskKeyComparator.java
@@ -5,7 +5,7 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
- * @author Eugene Kuleshov (https://bugs.eclipse.org/bugs/show_bug.cgi?id=129511)
+ * @author Eugene Kuleshov (https://bugs.eclipse.org/bugs/show_bug.cgi?taskId=129511)
*/
public class TaskKeyComparator implements Comparator<String> {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListView.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListView.java
index 63f9a86a1..b2ac5044f 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListView.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListView.java
@@ -1151,14 +1151,14 @@ public class TaskListView extends ViewPart {
}
/**
- * Recursive function that checks for the occurrence of a certain task id.
+ * Recursive function that checks for the occurrence of a certain task taskId.
* All children of the supplied node will be checked.
*
* @param task
* The <code>ITask</code> object that is to be searched.
* @param taskId
- * The id that is being searched for.
- * @return <code>true</code> if the id was found in the node or any of its
+ * The taskId that is being searched for.
+ * @return <code>true</code> if the taskId was found in the node or any of its
* children
*/
protected boolean lookForId(String taskId) {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/DatePicker.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/DatePicker.java
index 1af80968e..8a04dbb78 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/DatePicker.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/DatePicker.java
@@ -40,7 +40,7 @@ import org.eclipse.ui.PlatformUI;
/**
* Temporary date picker from patch posted to:
- * https://bugs.eclipse.org/bugs/show_bug.cgi?id=19945
+ * https://bugs.eclipse.org/bugs/show_bug.cgi?taskId=19945
*
* see bug# 19945
*
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/SynchronizeQueryJob.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/SynchronizeQueryJob.java
index 941403e00..3732e173f 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/SynchronizeQueryJob.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/SynchronizeQueryJob.java
@@ -191,7 +191,7 @@ class SynchronizeQueryJob extends Job {
return Status.CANCEL_STATUS;
RepositoryTaskData taskData;
try {
- taskData = handler.getTaskData(repository, hit.getId());
+ taskData = handler.getTaskData(repository, hit.getTaskId());
} catch (Throwable e) {
// ignore failures
monitor.worked(1);
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TasksUiUtil.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TasksUiUtil.java
index bd9494c06..7f90d6567 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TasksUiUtil.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TasksUiUtil.java
@@ -131,7 +131,7 @@ public class TasksUiUtil {
}
/**
- * Either pass in a repository and id, or fullUrl, or all of them
+ * Either pass in a repository and taskId, or fullUrl, or all of them
*/
public static boolean openRepositoryTask(String repositoryUrl, String taskId, String fullUrl) {
boolean opened = false;
@@ -249,7 +249,7 @@ public class TasksUiUtil {
/**
* @param task
- * @param pageId the id of the page to activate after opening
+ * @param pageId the taskId of the page to activate after opening
*/
public static void openEditor(ITask task, String pageId) {
final IEditorInput editorInput = new TaskEditorInput(task, false);
@@ -295,7 +295,7 @@ public class TasksUiUtil {
try {
return page.openEditor(input, editorId);
} catch (PartInitException e) {
- MylarStatusHandler.fail(e, "Open for editor failed: " + input + ", id: " + editorId, true);
+ MylarStatusHandler.fail(e, "Open for editor failed: " + input + ", taskId: " + editorId, true);
}
return null;
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java
index 3d48a3180..6a1ce203d 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractRepositoryTaskEditor.java
@@ -1713,7 +1713,7 @@ public abstract class AbstractRepositoryTaskEditor extends TaskFormPage {
// HACK: This is necessary
// due to a bug in SWT's ExpandableComposite.
// 165803: Expandable bars should expand when clicking anywhere
- // https://bugs.eclipse.org/bugs/show_bug.cgi?id=165803
+ // https://bugs.eclipse.org/bugs/show_bug.cgi?taskId=165803
expandableComposite.setData(replyLink);
expandableComposite.setLayout(new GridLayout());
@@ -2085,7 +2085,7 @@ public abstract class AbstractRepositoryTaskEditor extends TaskFormPage {
// due to a bug in SWT's ExpandableComposite.
// 165803: Expandable bars should expand when clicking
// anywhere
- // https://bugs.eclipse.org/bugs/show_bug.cgi?id=165803
+ // https://bugs.eclipse.org/bugs/show_bug.cgi?taskId=165803
if (ex.getData() != null && ex.getData() instanceof ImageHyperlink) {
((ImageHyperlink) ex.getData()).setVisible(true);
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskEditorInput.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskEditorInput.java
index dda558e80..1a4509d71 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskEditorInput.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskEditorInput.java
@@ -62,7 +62,7 @@ public class RepositoryTaskEditorInput extends AbstractTaskEditorInput {
}
/**
- * @return The id of the bug for this editor input.
+ * @return The taskId of the bug for this editor input.
*/
public String getId() {
return id;
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskOutlineNode.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskOutlineNode.java
index 673f3477c..453850a99 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskOutlineNode.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskOutlineNode.java
@@ -31,7 +31,7 @@ public class RepositoryTaskOutlineNode implements IRepositoryTaskSelection {
public static final String LABEL_NEW_COMMENT = "New Comment";
- /** The id of the Bugzilla object that the selection was on. */
+ /** The taskId of the Bugzilla object that the selection was on. */
protected String id;
/** The server of the Bugzilla object that the selection was on. */
@@ -59,8 +59,8 @@ public class RepositoryTaskOutlineNode implements IRepositoryTaskSelection {
/**
* Creates a new <code>RepositoryTaskOutlineNode</code>.
*
- * @param id
- * The id of the bug this outline is for.
+ * @param taskId
+ * The taskId of the bug this outline is for.
* @param server
* The server of the bug this outline is for.
* @param key
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskSelection.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskSelection.java
index 179fef19a..8b586af9f 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskSelection.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/RepositoryTaskSelection.java
@@ -20,7 +20,7 @@ import org.eclipse.mylar.tasks.core.TaskComment;
public class RepositoryTaskSelection implements IRepositoryTaskSelection {
/**
- * The id of the Bugzilla object that the selection was on.
+ * The taskId of the Bugzilla object that the selection was on.
*/
protected String id;
@@ -42,8 +42,8 @@ public class RepositoryTaskSelection implements IRepositoryTaskSelection {
* Creates a new <code>RepositoryTaskSelection</code> with no supplied
* contents or comment.
*
- * @param id
- * The id of the Bugzilla object that the selection was on.
+ * @param taskId
+ * The taskId of the Bugzilla object that the selection was on.
* @param server
* The server of the Bugzilla object that the selection was on.
*/
@@ -55,8 +55,8 @@ public class RepositoryTaskSelection implements IRepositoryTaskSelection {
* Creates a new <code>RepositoryTaskSelection</code> with no supplied
* comment.
*
- * @param id
- * The id of the Bugzilla object that the selection was on.
+ * @param taskId
+ * The taskId of the Bugzilla object that the selection was on.
* @param server
* The server of the Bugzilla object that the selection was on.
* @param contents
@@ -71,8 +71,8 @@ public class RepositoryTaskSelection implements IRepositoryTaskSelection {
* Creates a new <code>RepositoryTaskSelection</code> with no supplied
* contents.
*
- * @param id
- * The id of the Bugzilla object that the selection was on.
+ * @param taskId
+ * The taskId of the Bugzilla object that the selection was on.
* @param server
* The server of the Bugzilla object that the selection was on.
* @param taskComment
@@ -87,8 +87,8 @@ public class RepositoryTaskSelection implements IRepositoryTaskSelection {
/**
* Creates a new <code>RepositoryTaskSelection</code>.
*
- * @param id
- * The id of the Bugzilla object that the selection was on.
+ * @param taskId
+ * The taskId of the Bugzilla object that the selection was on.
* @param server
* The server of the Bugzilla object that the selection was on.
* @param contents
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditorInput.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditorInput.java
index 4f328dd3c..39145a464 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditorInput.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/TaskEditorInput.java
@@ -119,7 +119,7 @@ public class TaskEditorInput implements IEditorInput, IPersistableElement {
}
/**
- * @return Returns the id.
+ * @return Returns the taskId.
*/
public String getId() {
return id;

Back to the top