blob: d93532a10459e78c3919750379d80ea5d913ca36 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2014, 2021 Stephan Wahlbrink 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
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.redocs.wikitext.r.ui.editors;
import org.eclipse.core.commands.IHandler2;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExecutableExtension;
import org.eclipse.statet.ltk.ui.sourceediting.actions.MultiContentSectionHandler;
import org.eclipse.statet.r.ui.editors.RElementSearchHandler;
import org.eclipse.statet.redocs.wikitext.r.core.source.WikidocRweaveDocumentContentInfo;
public class ElementSearchHandler extends MultiContentSectionHandler implements IExecutableExtension {
private String commandId;
public ElementSearchHandler() {
super(WikidocRweaveDocumentContentInfo.INSTANCE);
}
@Override
public void setInitializationData(final IConfigurationElement config,
final String propertyName, final Object data) throws CoreException {
if (this.commandId == null) {
final String s= config.getAttribute("commandId"); //$NON-NLS-1$
if (s != null && !s.isEmpty()) {
this.commandId= s.intern();
}
}
}
@Override
protected IHandler2 createHandler(final String sectionType) {
switch (sectionType) {
case WikidocRweaveDocumentContentInfo.R:
return new RElementSearchHandler(this.commandId);
default:
return null;
}
}
}