1 /******************************************************************************* 2 * Copyright (c) 2006, 2007 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.debug.core.commands; 12 13 14 15 /** 16 * A request to update the enabled state of a command. A enabled state request 17 * is passed to a {@link IDebugCommandHandler} to update the enabled state of 18 * the handler. 19 * <p> 20 * Clients than invoke command handlers may implement this interface. 21 * </p> 22 * @since 3.3 23 */ 24 public interface IEnabledStateRequest extends IDebugCommandRequest { 25 26 /** 27 * Sets the enabled state of a command handler. 28 * 29 * @param result whether enabled 30 */ 31 public void setEnabled(boolean result); 32 } 33