blob: e601f8c7bbceaec893eaaba457c96499c23a96b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.xsd.ui.internal.search.actions;
import org.eclipse.jface.util.Assert;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.actions.ActionGroup;
public class XSDSearchActionGroup extends ActionGroup
{
private ReferencesSearchGroup fReferencesGroup;
private DeclarationsSearchGroup fDeclarationsGroup;
private ImplementorsSearchGroup fImplementorsGroup;
private OccurrencesSearchGroup fOccurrencesGroup;
private IEditorPart fEditor;
public XSDSearchActionGroup(IEditorPart editor)
{
Assert.isNotNull(editor);
fEditor = editor;
fReferencesGroup = new ReferencesSearchGroup(editor);
fDeclarationsGroup = new DeclarationsSearchGroup();
fImplementorsGroup = new ImplementorsSearchGroup();
fOccurrencesGroup = new OccurrencesSearchGroup();
}
}