Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/actions/FindImplementorsInWorkingSetAction.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/actions/FindImplementorsInWorkingSetAction.java112
1 files changed, 0 insertions, 112 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/actions/FindImplementorsInWorkingSetAction.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/actions/FindImplementorsInWorkingSetAction.java
deleted file mode 100644
index 307de421..00000000
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/actions/FindImplementorsInWorkingSetAction.java
+++ /dev/null
@@ -1,112 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.ui.actions;
-
-import org.eclipse.ui.IWorkbenchSite;
-import org.eclipse.ui.IWorkingSet;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-import org.eclipse.wst.jsdt.core.JavaScriptModelException;
-import org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope;
-import org.eclipse.wst.jsdt.internal.ui.IJavaHelpContextIds;
-import org.eclipse.wst.jsdt.internal.ui.JavaPluginImages;
-import org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaEditor;
-import org.eclipse.wst.jsdt.internal.ui.search.JavaSearchScopeFactory;
-import org.eclipse.wst.jsdt.internal.ui.search.SearchMessages;
-import org.eclipse.wst.jsdt.internal.ui.search.SearchUtil;
-import org.eclipse.wst.jsdt.ui.search.ElementQuerySpecification;
-import org.eclipse.wst.jsdt.ui.search.QuerySpecification;
-
-/**
- * Finds implementors of the selected element in working sets.
- * The action is applicable to selections representing a JavaScript interface.
- *
- * <p>
- * This class may be instantiated; it is not intended to be subclassed.
- * </p>
- *
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public class FindImplementorsInWorkingSetAction extends FindImplementorsAction {
-
- private IWorkingSet[] fWorkingSets;
-
- /**
- * Creates a new <code>FindImplementorsInWorkingSetAction</code>. The action
- * requires that the selection provided by the site's selection provider is of type
- * <code>org.eclipse.jface.viewers.IStructuredSelection</code>. The user will be
- * prompted to select the working sets.
- *
- * @param site the site providing context information for this action
- */
- public FindImplementorsInWorkingSetAction(IWorkbenchSite site) {
- super(site);
- }
-
- /**
- * Creates a new <code>FindImplementorsInWorkingSetAction</code>. The action
- * requires that the selection provided by the site's selection provider is of type
- * <code>org.eclipse.jface.viewers.IStructuredSelection</code>.
- *
- * @param site the site providing context information for this action
- * @param workingSets the working sets to be used in the search
- */
- public FindImplementorsInWorkingSetAction(IWorkbenchSite site, IWorkingSet[] workingSets) {
- this(site);
- fWorkingSets= workingSets;
- }
-
- /**
- * Note: This constructor is for internal use only. Clients should not call this constructor.
- * @param editor the JavaScript editor
- */
- public FindImplementorsInWorkingSetAction(JavaEditor editor) {
- super(editor);
- }
-
- /**
- * Note: This constructor is for internal use only. Clients should not call this constructor.
- * @param editor the JavaScript editor
- * @param workingSets the working sets to be used in the search
- */
- public FindImplementorsInWorkingSetAction(JavaEditor editor, IWorkingSet[] workingSets) {
- this(editor);
- fWorkingSets= workingSets;
- }
-
- void init() {
- setText(SearchMessages.Search_FindImplementorsInWorkingSetAction_label);
- setToolTipText(SearchMessages.Search_FindImplementorsInWorkingSetAction_tooltip);
- setImageDescriptor(JavaPluginImages.DESC_OBJS_SEARCH_DECL);
- PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.FIND_IMPLEMENTORS_IN_WORKING_SET_ACTION);
- }
-
- QuerySpecification createQuery(IJavaScriptElement element) throws JavaScriptModelException, InterruptedException {
- JavaSearchScopeFactory factory= JavaSearchScopeFactory.getInstance();
-
- IWorkingSet[] workingSets= fWorkingSets;
- if (fWorkingSets == null) {
- workingSets= factory.queryWorkingSets();
- if (workingSets == null)
- return super.createQuery(element); // workspace
- }
- SearchUtil.updateLRUWorkingSets(workingSets);
- IJavaScriptSearchScope scope= factory.createJavaSearchScope(workingSets, true);
- String description= factory.getWorkingSetScopeDescription(workingSets, true);
- return new ElementQuerySpecification(element, getLimitTo(), scope, description);
- }
-
-}
-

Back to the top