Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Brychcy2019-04-24 19:31:28 +0000
committerTill Brychcy2019-04-24 19:35:45 +0000
commit7ab47231241074338062bece34d1b475db576577 (patch)
tree3af640876fb3a25eae36da0948c65256d523d06a
parente4738e9a11af9e88998afc33430c33d179e103a0 (diff)
downloadeclipse.jdt.ui-I20190424-1800.tar.gz
eclipse.jdt.ui-I20190424-1800.tar.xz
eclipse.jdt.ui-I20190424-1800.zip
Bug 546675 - right clicking inside a scala class file causes class notI20190425-1800I20190425-0030I20190424-1800
-rw-r--r--org.eclipse.jdt.ui/internal compatibility/org/eclipse/jdt/internal/corext/util/TypeNameMatchCollector.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/org.eclipse.jdt.ui/internal compatibility/org/eclipse/jdt/internal/corext/util/TypeNameMatchCollector.java b/org.eclipse.jdt.ui/internal compatibility/org/eclipse/jdt/internal/corext/util/TypeNameMatchCollector.java
new file mode 100644
index 0000000000..dce80c630d
--- /dev/null
+++ b/org.eclipse.jdt.ui/internal compatibility/org/eclipse/jdt/internal/corext/util/TypeNameMatchCollector.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Till Brychcy and others.
+ *
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * Till Brychcy - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.corext.util;
+
+import java.util.Collection;
+
+import org.eclipse.jdt.core.search.TypeNameMatch;
+
+/**
+ * Note: this is required for (abandoned) Scala-IDE
+ *
+ * @deprecated Use {@link org.eclipse.jdt.core.manipulation.TypeNameMatchCollector} instead.
+ */
+@Deprecated
+public class TypeNameMatchCollector extends org.eclipse.jdt.core.manipulation.TypeNameMatchCollector {
+ public TypeNameMatchCollector(Collection<TypeNameMatch> collection) {
+ super(collection);
+ }
+}

Back to the top