Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Piskarev2020-09-02 11:22:32 +0000
committerVladimir Piskarev2020-09-02 11:22:32 +0000
commit9f46c3bcb7f3d0cb7ee97da7a7a215d27362469b (patch)
tree364a54f3959d163d9d7994b7d6655c6567e98a0f
parent662e857be2d5f96f3b9519e1d1d932d4d1d2e371 (diff)
downloadorg.eclipse.handly-9f46c3bcb7f3d0cb7ee97da7a7a215d27362469b.tar.gz
org.eclipse.handly-9f46c3bcb7f3d0cb7ee97da7a7a215d27362469b.tar.xz
org.eclipse.handly-9f46c3bcb7f3d0cb7ee97da7a7a215d27362469b.zip
Introduce a family for SourceElementLinkingHelper.LinkToOutlineJob
-rw-r--r--org.eclipse.handly.ui/src/org/eclipse/handly/ui/outline/SourceElementLinkingHelper.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/org.eclipse.handly.ui/src/org/eclipse/handly/ui/outline/SourceElementLinkingHelper.java b/org.eclipse.handly.ui/src/org/eclipse/handly/ui/outline/SourceElementLinkingHelper.java
index dd9b3419..39e59884 100644
--- a/org.eclipse.handly.ui/src/org/eclipse/handly/ui/outline/SourceElementLinkingHelper.java
+++ b/org.eclipse.handly.ui/src/org/eclipse/handly/ui/outline/SourceElementLinkingHelper.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2014, 2018 1C-Soft LLC and others.
+ * Copyright (c) 2014, 2020 1C-Soft LLC and others.
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which is available at
@@ -303,6 +303,12 @@ public class SourceElementLinkingHelper
}
@Override
+ public boolean belongsTo(Object family)
+ {
+ return LinkToOutlineJob.class.getName().equals(family);
+ }
+
+ @Override
protected IStatus run(IProgressMonitor monitor)
{
final ISelection baseSelection = selection;

Back to the top