blob: 0cdb26d29af65f8b47ca261a930d36b474de23d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 QNX Software Systems 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:
* QNX Software Systems - initial API and implementation
* IBM Corporation
*******************************************************************************/
/* -- ST-Origin --
* Source folder: org.eclipse.cdt.ui/src
* Class: org.eclipse.cdt.internal.ui.search.actions.WorkingSetFindAction
* Version: 1.8
*/
package org.eclipse.ptp.internal.rdt.ui.search.actions;
import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.internal.ui.editor.CEditor;
import org.eclipse.ui.IWorkbenchSite;
public class WorkingSetFindAction extends FindAction {
private FindAction findAction;
public WorkingSetFindAction(CEditor editor, FindAction action, String string) {
super ( editor );
this.findAction = action;
setText(string);
}
public WorkingSetFindAction(IWorkbenchSite site,FindAction action, String string) {
super(site);
this.findAction = action;
setText(string);
}
protected String getScopeDescription() {
return findAction.getScopeDescription();
}
protected ICElement[] getScope() {
return findAction.getScope();
}
protected int getLimitTo() {
return findAction.getLimitTo();
}
public void run() {
findAction.run();
}
}