Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java82
1 files changed, 0 insertions, 82 deletions
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
deleted file mode 100644
index 475a26ec7..000000000
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/IRepositoryTaskSelection.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Mylyn project committers 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
- *******************************************************************************/
-
-package org.eclipse.mylyn.internal.tasks.ui.editors;
-
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.mylyn.tasks.core.TaskComment;
-
-public interface IRepositoryTaskSelection 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 TaskComment getComment();
-
- /**
- * Sets the <code>Comment</code> object for this selection. If a comment was not selected, then this should be
- * <code>null</code>.
- *
- * @param taskComment
- * The selection's comment, or <code>null</code> if not applicable.
- */
- public void setComment(TaskComment taskComment);
-
- /**
- * @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 taskId of the Bugzilla object that the selection was on.
- */
- public String getId();
-
- /**
- * Sets the taskId of the Bugzilla object that the selection was on.
- *
- * @param taskId
- * The taskId of the bug.
- */
- public void setId(String id);
-
- /**
- * @return The server of the Bugzilla object that the selection was on, or <code>null</code> if no server is
- * supplied.
- */
- public String getRepositoryUrl();
-
- /**
- * 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