Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/ui/outline/BugzillaTools.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/ui/outline/BugzillaTools.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/ui/outline/BugzillaTools.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/ui/outline/BugzillaTools.java
new file mode 100644
index 000000000..133bfa7ef
--- /dev/null
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/ui/outline/BugzillaTools.java
@@ -0,0 +1,62 @@
+/*******************************************************************************
+ * Copyright (c) 2003 - 2005 University Of British Columbia and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * University Of British Columbia - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.mylar.bugzilla.ui.outline;
+
+
+/**
+ * Miscellaneous constants and functions for this plugin.
+ */
+public class BugzillaTools {
+
+ /** The default string used for locally created bugs. */
+ public static final String OFFLINE_SERVER_DEFAULT = "[local]";
+
+ /**
+ * Returns a unique handle for the bugzilla selection. Contains the bug id,
+ * the bug server, and (if applicable) the comment number.
+ *
+ * @param bugSel
+ * The bugzilla selection.
+ * @return The handle for the bugzilla selection.
+ */
+ public static String getHandle(IBugzillaReportSelection bugSel) {
+ String handle = bugSel.getServer() + ";" + bugSel.getId();
+ if (bugSel.hasComment()) {
+ int number = bugSel.getComment().getNumber() + 1;
+ handle += ";" + number;
+ } else if(bugSel.isCommentHeader()){
+ handle += ";1";
+ } else if(bugSel.isDescription()){
+ handle += ";0";
+ }
+ return handle;
+ }
+
+ /**
+ * The name for the given bug report
+ *
+ * @param bugSel
+ * The bugzilla selection.
+ * @return The name for the bugzilla selection
+ */
+ public static String getName(IBugzillaReportSelection bugSel) {
+ String name = bugSel.getServer() + ": Bug#: " + bugSel.getId();
+ if (bugSel.hasComment()) {
+ name+= " : Comment#: " + bugSel.getComment().getNumber();
+ } else if(bugSel.isCommentHeader()){
+ name+= " : Comment Header";
+ } else if(bugSel.isDescription()){
+ name+= ": Description";
+ }
+ return name;
+ }
+
+}

Back to the top