blob: f4e39364b4155804015bc1235f8bac1da1751b58 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2015 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.core.commands;
import org.eclipse.core.commands.ParameterizedCommand;
import org.eclipse.e4.core.contexts.IEclipseContext;
/**
* @noimplement
*/
public interface EHandlerService {
public void activateHandler(String commandId, Object handler);
public void deactivateHandler(String commandId, Object handler);
public Object executeHandler(ParameterizedCommand command);
public boolean canExecute(ParameterizedCommand command);
/**
* Execute a handler for the command.
*
* @param command Must not be <code>null</code>
* @param staticContext Must not be <code>null</code>. You must dispose your
* context when you are done.
* @return the command return value.
*/
public Object executeHandler(ParameterizedCommand command, IEclipseContext staticContext);
/**
* Check if a command can be executed.
*
* @param command Must not be <code>null</code>.
* @param staticContext Must not be <code>null</code>. You must dispose your
* context when you are done.
* @return true if the command can be executed.
*/
public boolean canExecute(ParameterizedCommand command, IEclipseContext staticContext);
}