1 /******************************************************************************* 2 * Copyright (c) 2005 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.ui.internal.commands; 12 13 import org.eclipse.jface.action.IAction; 14 15 /** 16 * This defines attribute names that were understood in Eclipse 3.0. This is 17 * used to provide legacy support for the attribute map property. 18 * 19 * @since 3.1 20 */ 21 public interface ILegacyAttributeNames { 22 23 /** 24 * Whether the handler is capable of executing right now. 25 */ 26 public final String ENABLED = IAction.ENABLED; 27 28 /** 29 * Whether the handler is capable of handling delegation of responsibilities 30 * at this time. 31 */ 32 public final String HANDLED = IAction.HANDLED; 33 } 34