Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.bugs/src/org/eclipse/mylyn/internal/provisional/tasks/bugs/AbstractTaskContributor.java')
-rw-r--r--org.eclipse.mylyn.tasks.bugs/src/org/eclipse/mylyn/internal/provisional/tasks/bugs/AbstractTaskContributor.java69
1 files changed, 0 insertions, 69 deletions
diff --git a/org.eclipse.mylyn.tasks.bugs/src/org/eclipse/mylyn/internal/provisional/tasks/bugs/AbstractTaskContributor.java b/org.eclipse.mylyn.tasks.bugs/src/org/eclipse/mylyn/internal/provisional/tasks/bugs/AbstractTaskContributor.java
deleted file mode 100644
index fead4aa52..000000000
--- a/org.eclipse.mylyn.tasks.bugs/src/org/eclipse/mylyn/internal/provisional/tasks/bugs/AbstractTaskContributor.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2009 Tasktop Technologies 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:
- * Tasktop Technologies - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylyn.internal.provisional.tasks.bugs;
-
-import java.util.Map;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.mylyn.tasks.core.data.TaskData;
-import org.eclipse.mylyn.tasks.ui.editors.TaskEditorInput;
-
-/**
- * @author Steffen Pingel
- * @since 3.0
- * @deprecated use {@link AbstractSupportHandler} instead, as of 3.2 all taskContributor extensions are ignored
- */
-@Deprecated
-public abstract class AbstractTaskContributor {
-
- /**
- * @since 3.2
- */
- public void preProcess(ISupportRequest request) {
- }
-
- /**
- * @since 3.0
- */
- public abstract Map<String, String> getAttributes(IStatus status);
-
- /**
- * Returns the id of an editor that should be used to open the {@link TaskEditorInput} with the task.
- *
- * @param status
- * the status
- * @return id of editor
- * @since 3.0
- */
- public String getEditorId(IStatus status) {
- return null;
- }
-
- /**
- * @since 3.2
- */
- public void process(ITaskContribution contribution) {
- }
-
- /**
- * @since 3.0
- */
- public void postProcess(IStatus status, TaskData taskData) {
- }
-
- /**
- * @since 3.2
- */
- public void postProcess(ISupportResponse response) {
- }
-
-}

Back to the top