Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/core/IBugzillaReportSelection.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/core/IBugzillaReportSelection.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/core/IBugzillaReportSelection.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/core/IBugzillaReportSelection.java
deleted file mode 100644
index 494a38bb1..000000000
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/bugzilla/core/IBugzillaReportSelection.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/*******************************************************************************
- * 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.core;
-
-import org.eclipse.jface.viewers.ISelection;
-
-
-/**
- * Interface for a selection of a Bugzilla element in a view.
- */
-public interface IBugzillaReportSelection extends ISelection {
-
- /**
- * @return <code>true</code> if a comment was selected.
- */
- public boolean hasComment();
-
- /**
- * @return the <code>Comment</code> object for this selection, or
- * <code>null</code> if a comment was not selected.
- */
- public Comment getComment();
-
- /**
- * Sets the <code>Comment</code> object for this selection. If a comment
- * was not selected, then this should be <code>null</code>.
- *
- * @param comment
- * The selection's comment, or <code>null</code> if not
- * applicable.
- */
- public void setComment(Comment comment);
-
- /**
- * @return The contents of the selection. This can be <code>null</code>.
- */
- public String getContents();
-
- /**
- * Sets the contents of the selection.
- *
- * @param contents
- * The selection.
- */
- public void setContents(String contents);
-
- /**
- * @return The id of the Bugzilla object that the selection was on.
- */
- public int getId();
-
- /**
- * Sets the id of the Bugzilla object that the selection was on.
- *
- * @param id
- * The id of the bug.
- */
- public void setId(int id);
-
- /**
- * @return The server of the Bugzilla object that the selection was on, or
- * <code>null</code> if no server is supplied.
- */
- public String getServer();
-
- /**
- * Sets the server of the Bugzilla object that the selection was on.
- *
- * @param server
- * The server of the bug.
- */
- public void setServer(String server);
-
- public boolean isCommentHeader();
-
- public boolean isDescription();
-
- public String getBugSummary();
-
-
-}

Back to the top