Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2006-12-05 01:57:53 +0000
committermkersten2006-12-05 01:57:53 +0000
commitbf99d8e8724bc2721cd3b6832fbe39d1389099fa (patch)
treea29d2ea77caa84a16e128ea42d165e3670996aba /org.eclipse.mylyn.tasks.core/src
parent5c718ae5beaa52201ce7dffb140843764f3282d7 (diff)
downloadorg.eclipse.mylyn.tasks-bf99d8e8724bc2721cd3b6832fbe39d1389099fa.tar.gz
org.eclipse.mylyn.tasks-bf99d8e8724bc2721cd3b6832fbe39d1389099fa.tar.xz
org.eclipse.mylyn.tasks-bf99d8e8724bc2721cd3b6832fbe39d1389099fa.zip
NEW - bug 165581: Improve Open Correspond Task action
https://bugs.eclipse.org/bugs/show_bug.cgi?id=165581
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/ILinkedTaskInfo.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/ILinkedTaskInfo.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/ILinkedTaskInfo.java
new file mode 100644
index 000000000..89388b952
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/ILinkedTaskInfo.java
@@ -0,0 +1,31 @@
+/*******************************************************************************
+ * Copyright (c) 2004 - 2006 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:
+ * Eugene Kuleshov - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylar.tasks.core;
+
+/**
+ * Task information linked to artifacts from version control integration
+ *
+ * @author Eugene Kuleshov
+ */
+public interface ILinkedTaskInfo {
+
+ public abstract String getTaskId();
+
+ public abstract String getTaskFullUrl();
+
+ public abstract String getRepositoryUrl();
+
+ public abstract ITask getTask();
+
+ public abstract String getComment();
+
+}

Back to the top