Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsminto2005-07-22 15:41:02 +0000
committersminto2005-07-22 15:41:02 +0000
commit515663b06c889aba73603d05a99005159447b433 (patch)
tree0ef0f0a075e80bb96511d7d51edcf2543c615e4d /org.eclipse.mylyn.tasks.core
parentb81333d654ae04e505330724bdded3f52f0290fb (diff)
downloadorg.eclipse.mylyn.tasks-515663b06c889aba73603d05a99005159447b433.tar.gz
org.eclipse.mylyn.tasks-515663b06c889aba73603d05a99005159447b433.tar.xz
org.eclipse.mylyn.tasks-515663b06c889aba73603d05a99005159447b433.zip
completed name refactoring for tasklist and bugs
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/META-INF/MANIFEST.MF12
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaEditingMonitor.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaEditingMonitor.java)4
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaMylarBridge.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaMylarBridge.java)4
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaNodeLabelProvider.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaNodeLabelProvider.java)4
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaStructureBridge.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaStructureBridge.java)6
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaUiBridge.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaUiBridge.java)14
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/MylarBugzillaPlugin.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/MylarBugzillaPlugin.java)6
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearch.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearch.java)8
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchJob.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchJob.java)4
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchOperation.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchOperation.java)32
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaReferencesProvider.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java)12
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/Util.java (renamed from org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/Util.java)2
12 files changed, 54 insertions, 54 deletions
diff --git a/org.eclipse.mylyn.tasks.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.tasks.core/META-INF/MANIFEST.MF
index 6de03dcbf..95ce39445 100644
--- a/org.eclipse.mylyn.tasks.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.tasks.core/META-INF/MANIFEST.MF
@@ -1,9 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Mylar Bugzilla Plug-in
-Bundle-SymbolicName: org.eclipse.mylar.bugzilla;singleton:=true
+Bundle-Name: Mylar Bugs Plug-in
+Bundle-SymbolicName: org.eclipse.mylar.bugs; singleton:=true
Bundle-Version: 0.3.2.2
-Bundle-Activator: org.eclipse.mylar.bugzilla.MylarBugzillaPlugin
+Bundle-Activator: org.eclipse.mylar.bugs.MylarBugzillaPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
@@ -14,7 +14,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.jdt.core,
org.eclipse.ui.ide,
org.eclipse.core.resources,
- org.eclipse.mylar.tasks
+ org.eclipse.mylar.tasklist
Eclipse-AutoStart: true
-Export-Package: org.eclipse.mylar.bugzilla,
- org.eclipse.mylar.tasks.search
+Export-Package: org.eclipse.mylar.bugs,
+ org.eclipse.mylar.bugs.search
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaEditingMonitor.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaEditingMonitor.java
index 3bee8b160..8f4990b4c 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaEditingMonitor.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaEditingMonitor.java
@@ -11,13 +11,13 @@
/*
* Created on Apr 27, 2005
*/
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.mylar.bugzilla.ui.editor.AbstractBugEditor;
import org.eclipse.mylar.bugzilla.ui.outline.BugzillaReportSelection;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaTaskEditor;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTaskEditor;
import org.eclipse.mylar.core.AbstractSelectionMonitor;
import org.eclipse.ui.IWorkbenchPart;
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaMylarBridge.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaMylarBridge.java
index b76efc5b0..6e09c0df4 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaMylarBridge.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaMylarBridge.java
@@ -11,7 +11,7 @@
/*
* Created on Oct 1, 2004
*/
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import java.util.Collection;
import java.util.Collections;
@@ -22,7 +22,7 @@ import java.util.Map;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMember;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
/**
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaNodeLabelProvider.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaNodeLabelProvider.java
index 5ff40382c..415749274 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaNodeLabelProvider.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaNodeLabelProvider.java
@@ -11,12 +11,12 @@
/*
* Created on Apr 18, 2005
*/
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.mylar.bugzilla.core.BugReport;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
import org.eclipse.mylar.core.IMylarContextNode;
import org.eclipse.mylar.ui.MylarImages;
import org.eclipse.swt.graphics.Image;
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaStructureBridge.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaStructureBridge.java
index b7c2fa028..843f9c3fa 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaStructureBridge.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaStructureBridge.java
@@ -11,7 +11,7 @@
/*
* Created on May 2, 2005
*/
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
@@ -33,8 +33,8 @@ import org.eclipse.mylar.bugzilla.core.search.BugzillaSearchHit;
import org.eclipse.mylar.bugzilla.ui.editor.AbstractBugEditor;
import org.eclipse.mylar.bugzilla.ui.outline.BugzillaOutlineNode;
import org.eclipse.mylar.bugzilla.ui.outline.BugzillaReportSelection;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaCacheFile;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaCacheFile;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
import org.eclipse.mylar.core.AbstractRelationshipProvider;
import org.eclipse.mylar.core.IDegreeOfSeparation;
import org.eclipse.mylar.core.IMylarStructureBridge;
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaUiBridge.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaUiBridge.java
index 71399a20e..ee76ab477 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/BugzillaUiBridge.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/BugzillaUiBridge.java
@@ -11,7 +11,7 @@
/*
* Created on Apr 6, 2005
*/
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import java.util.ArrayList;
import java.util.Collections;
@@ -20,16 +20,16 @@ import java.util.List;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.TreeViewer;
+import org.eclipse.mylar.bugs.search.BugzillaReferencesProvider;
import org.eclipse.mylar.bugzilla.ui.BugzillaOpenStructure;
import org.eclipse.mylar.bugzilla.ui.ViewBugzillaAction;
import org.eclipse.mylar.bugzilla.ui.editor.AbstractBugEditor;
import org.eclipse.mylar.bugzilla.ui.outline.BugzillaOutlinePage;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaTask;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaTaskEditor;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTask;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTaskEditor;
import org.eclipse.mylar.core.IMylarContextNode;
-import org.eclipse.mylar.tasks.ITask;
-import org.eclipse.mylar.tasks.MylarTasksPlugin;
-import org.eclipse.mylar.tasks.search.BugzillaReferencesProvider;
+import org.eclipse.mylar.tasklist.ITask;
+import org.eclipse.mylar.tasklist.MylarTasklistPlugin;
import org.eclipse.mylar.ui.IMylarUiBridge;
import org.eclipse.mylar.ui.MylarImages;
import org.eclipse.ui.IEditorPart;
@@ -64,7 +64,7 @@ public class BugzillaUiBridge implements IMylarUiBridge {
List<BugzillaOpenStructure> l = new ArrayList<BugzillaOpenStructure>(1);
l.add(new BugzillaOpenStructure(server, bugId, commentNumer));
- ITask task= MylarTasksPlugin.getTaskListManager().getTaskForHandle(bugHandle);
+ ITask task= MylarTasklistPlugin.getTaskListManager().getTaskForHandle(bugHandle);
if (task != null && task instanceof BugzillaTask) {
BugzillaTask bugzillaTask = (BugzillaTask)task;
bugzillaTask.openTask(commentNumer);
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/MylarBugzillaPlugin.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/MylarBugzillaPlugin.java
index 6433a9573..dd8ea18dd 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugzilla/MylarBugzillaPlugin.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/MylarBugzillaPlugin.java
@@ -1,11 +1,11 @@
-package org.eclipse.mylar.bugzilla;
+package org.eclipse.mylar.bugs;
import java.util.List;
import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.mylar.bugs.search.BugzillaReferencesProvider;
import org.eclipse.mylar.core.AbstractRelationshipProvider;
import org.eclipse.mylar.core.MylarPlugin;
-import org.eclipse.mylar.tasks.search.BugzillaReferencesProvider;
import org.eclipse.mylar.ui.MylarUiPlugin;
import org.eclipse.ui.IStartup;
import org.eclipse.ui.IWorkbench;
@@ -84,7 +84,7 @@ public class MylarBugzillaPlugin extends AbstractUIPlugin implements IStartup {
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
- return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.mylar.bugzilla.bridge", path);
+ return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.mylar.bugs.bridge", path);
}
public static BugzillaMylarBridge getBridge() {
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearch.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearch.java
index aba86a323..f167a9b1b 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearch.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearch.java
@@ -11,7 +11,7 @@
/*
* Created on Oct 13, 2004
*/
-package org.eclipse.mylar.tasks.search;
+package org.eclipse.mylar.bugs.search;
import java.util.ArrayList;
import java.util.Collections;
@@ -23,8 +23,8 @@ import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMember;
-import org.eclipse.mylar.bugzilla.BugzillaMylarBridge;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.bugs.BugzillaMylarBridge;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
import org.eclipse.mylar.core.InterestComparator;
import org.eclipse.mylar.core.search.IActiveSearchListener;
import org.eclipse.mylar.core.search.IMylarSearchOperation;
@@ -75,7 +75,7 @@ public class BugzillaMylarSearch implements IMylarSearchOperation {
// FIXME: decide whether to do leave the caching of searches in for now or not
// check if we have the info cached
-// List<BugzillaReportNode> landmarkDoi = MylarTasksPlugin.getBridge()
+// List<BugzillaReportNode> landmarkDoi = MylarTasklistPlugin.getBridge()
// .getFromLandmarksHash(m, scope);
// if (landmarkDoi != null) {
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchJob.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchJob.java
index b596f5536..5c80db9bf 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchJob.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchJob.java
@@ -11,7 +11,7 @@
/*
* Created on Oct 6, 2004
*/
-package org.eclipse.mylar.tasks.search;
+package org.eclipse.mylar.bugs.search;
import javax.security.auth.login.LoginException;
@@ -21,7 +21,7 @@ import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.MessageDialog;
-import org.eclipse.mylar.bugzilla.BugzillaMylarBridge;
+import org.eclipse.mylar.bugs.BugzillaMylarBridge;
import org.eclipse.mylar.bugzilla.core.BugzillaPlugin;
import org.eclipse.mylar.bugzilla.core.IBugzillaConstants;
import org.eclipse.ui.PlatformUI;
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchOperation.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchOperation.java
index a2da3e9b3..6045e3d94 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaMylarSearchOperation.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaMylarSearchOperation.java
@@ -11,7 +11,7 @@
/*
* Created on Oct 14, 2004
*/
-package org.eclipse.mylar.tasks.search;
+package org.eclipse.mylar.bugs.search;
import java.util.ArrayList;
import java.util.Iterator;
@@ -27,7 +27,7 @@ import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMember;
import org.eclipse.jdt.core.IType;
import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.mylar.bugzilla.MylarBugzillaPlugin;
+import org.eclipse.mylar.bugs.MylarBugzillaPlugin;
import org.eclipse.mylar.bugzilla.core.BugReport;
import org.eclipse.mylar.bugzilla.core.Comment;
import org.eclipse.mylar.bugzilla.core.search.BugzillaSearchEngine;
@@ -35,13 +35,13 @@ import org.eclipse.mylar.bugzilla.core.search.BugzillaSearchHit;
import org.eclipse.mylar.bugzilla.core.search.BugzillaSearchQuery;
import org.eclipse.mylar.bugzilla.core.search.IBugzillaSearchOperation;
import org.eclipse.mylar.bugzilla.ui.search.BugzillaResultCollector;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaTask;
-import org.eclipse.mylar.bugzilla.ui.tasks.StackTrace;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTask;
+import org.eclipse.mylar.bugzilla.ui.tasklist.StackTrace;
import org.eclipse.mylar.core.MylarPlugin;
-import org.eclipse.mylar.tasks.ITask;
-import org.eclipse.mylar.tasks.MylarTasksPlugin;
-import org.eclipse.mylar.tasks.internal.TaskCategory;
+import org.eclipse.mylar.tasklist.ITask;
+import org.eclipse.mylar.tasklist.MylarTasklistPlugin;
+import org.eclipse.mylar.tasklist.internal.TaskCategory;
import org.eclipse.ui.actions.WorkspaceModifyOperation;
@@ -157,9 +157,9 @@ public class BugzillaMylarSearchOperation extends WorkspaceModifyOperation
collector.setProgressMonitor(monitor);
// get all of the root tasks and start the search
- List<ITask> tasks = MylarTasksPlugin.getTaskListManager().getTaskList().getRootTasks();
+ List<ITask> tasks = MylarTasklistPlugin.getTaskListManager().getTaskList().getRootTasks();
searchLocal(tasks, collector, elementName, monitor);
- for (TaskCategory cat : MylarTasksPlugin.getTaskListManager().getTaskList().getTaskCategories()) {
+ for (TaskCategory cat : MylarTasklistPlugin.getTaskListManager().getTaskList().getTaskCategories()) {
searchLocal(cat.getChildren(), collector, elementName, monitor);
}
@@ -183,9 +183,9 @@ public class BugzillaMylarSearchOperation extends WorkspaceModifyOperation
collector.setProgressMonitor(monitor);
// get all of the root tasks and start the search
- List<ITask> tasks = MylarTasksPlugin.getTaskListManager().getTaskList().getRootTasks();
+ List<ITask> tasks = MylarTasklistPlugin.getTaskListManager().getTaskList().getRootTasks();
searchLocal(tasks, collector, elementName, monitor);
- for (TaskCategory cat : MylarTasksPlugin.getTaskListManager().getTaskList().getTaskCategories()) {
+ for (TaskCategory cat : MylarTasklistPlugin.getTaskListManager().getTaskList().getTaskCategories()) {
searchLocal(cat.getChildren(), collector, elementName, monitor);
}
// return the collector
@@ -457,7 +457,7 @@ public class BugzillaMylarSearchOperation extends WorkspaceModifyOperation
}
/**
- * @see org.eclipse.mylar.bugzilla.core.search.IBugzillaSearchOperation#getStatus()
+ * @see org.eclipse.mylar.bugs.core.search.IBugzillaSearchOperation#getStatus()
*/
public IStatus getStatus() throws LoginException {
// if a LoginException was thrown while trying to search, throw this
@@ -468,7 +468,7 @@ public class BugzillaMylarSearchOperation extends WorkspaceModifyOperation
}
/**
- * @see org.eclipse.mylar.bugzilla.core.search.IBugzillaSearchOperation#getImageDescriptor()
+ * @see org.eclipse.mylar.bugs.core.search.IBugzillaSearchOperation#getImageDescriptor()
*/
public ImageDescriptor getImageDescriptor() {
return null;
@@ -493,14 +493,14 @@ public class BugzillaMylarSearchOperation extends WorkspaceModifyOperation
}
/**
- * @see org.eclipse.mylar.bugzilla.core.search.IBugzillaSearchOperation#getQuery()
+ * @see org.eclipse.mylar.bugs.core.search.IBugzillaSearchOperation#getQuery()
*/
public BugzillaSearchQuery getQuery() {
return query;
}
/**
- * @see org.eclipse.mylar.bugzilla.core.search.IBugzillaSearchOperation#setQuery(org.eclipse.mylar.bugzilla.core.search.BugzillaSearchQuery)
+ * @see org.eclipse.mylar.bugs.core.search.IBugzillaSearchOperation#setQuery(org.eclipse.mylar.bugs.core.search.BugzillaSearchQuery)
*/
public void setQuery(BugzillaSearchQuery newQuery) {
this.query = newQuery;
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaReferencesProvider.java
index a083647ba..a70693b87 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/BugzillaReferencesProvider.java
@@ -11,7 +11,7 @@
/*
* Created on Feb 2, 2005
*/
-package org.eclipse.mylar.tasks.search;
+package org.eclipse.mylar.bugs.search;
import java.util.Collection;
import java.util.HashMap;
@@ -24,10 +24,10 @@ import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMember;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaCore;
-import org.eclipse.mylar.bugzilla.BugzillaMylarBridge;
-import org.eclipse.mylar.bugzilla.BugzillaStructureBridge;
-import org.eclipse.mylar.bugzilla.MylarBugzillaPlugin;
-import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.bugs.BugzillaMylarBridge;
+import org.eclipse.mylar.bugs.BugzillaStructureBridge;
+import org.eclipse.mylar.bugs.MylarBugzillaPlugin;
+import org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaReportNode;
import org.eclipse.mylar.core.AbstractRelationshipProvider;
import org.eclipse.mylar.core.IMylarContextNode;
import org.eclipse.mylar.core.search.IActiveSearchListener;
@@ -40,7 +40,7 @@ import org.eclipse.ui.PlatformUI;
*/
public class BugzillaReferencesProvider extends AbstractRelationshipProvider {
- public static final String ID = "org.eclipse.mylar.bugzilla.search.references";
+ public static final String ID = "org.eclipse.mylar.bugs.search.references";
public static final String NAME = "Bugilla report references";
public BugzillaReferencesProvider() {
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/Util.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/Util.java
index d883e90ea..47d5821f8 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/Util.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/bugs/search/Util.java
@@ -11,7 +11,7 @@
/*
* Created on Nov 19, 2004
*/
-package org.eclipse.mylar.tasks.search;
+package org.eclipse.mylar.bugs.search;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

Back to the top