Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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