Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2013-03-13 20:08:57 +0000
committerGerrit Code Review @ Eclipse.org2013-05-07 14:46:44 +0000
commitf1bd276eef5cba42c3d2ec0037dde32096a0581d (patch)
treebfbd615f7329023128642ac1336191bbf44ba664
parent9967fa67c719125a2a92c5a9af77c4b28d37967e (diff)
downloadorg.eclipse.mylyn.commons-f1bd276eef5cba42c3d2ec0037dde32096a0581d.tar.gz
org.eclipse.mylyn.commons-f1bd276eef5cba42c3d2ec0037dde32096a0581d.tar.xz
org.eclipse.mylyn.commons-f1bd276eef5cba42c3d2ec0037dde32096a0581d.zip
360055: prompt users to disable "Show subtasks not Matching Query"
Change-Id: I86c8616a14e9b9d604dc7fd7a956462ba0efabee Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=360055
-rw-r--r--org.eclipse.mylyn.commons.notifications.feed/src/org/eclipse/mylyn/internal/commons/notifications/feed/ServiceMessage.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.commons.notifications.feed/src/org/eclipse/mylyn/internal/commons/notifications/feed/ServiceMessage.java b/org.eclipse.mylyn.commons.notifications.feed/src/org/eclipse/mylyn/internal/commons/notifications/feed/ServiceMessage.java
index 7a1cddae..918ea8d5 100644
--- a/org.eclipse.mylyn.commons.notifications.feed/src/org/eclipse/mylyn/internal/commons/notifications/feed/ServiceMessage.java
+++ b/org.eclipse.mylyn.commons.notifications.feed/src/org/eclipse/mylyn/internal/commons/notifications/feed/ServiceMessage.java
@@ -148,4 +148,13 @@ public class ServiceMessage extends AbstractNotification {
return builder.toString();
}
+ /**
+ * Called when the user clicks a link in the message.
+ *
+ * @return whether the message should be closed when the link is clicked
+ */
+ public boolean openLink(String link) {
+ return false;
+ }
+
}

Back to the top