01: /*******************************************************************************
02: * Copyright (c) 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.commands;
11:
12: import org.eclipse.jface.action.IAction;
13:
14: /**
15: * This defines attribute names that were understood in Eclipse 3.0. This is
16: * used to provide legacy support for the attribute map property.
17: *
18: * @since 3.1
19: */
20: public interface ILegacyAttributeNames {
21:
22: /**
23: * Whether the handler is capable of executing right now.
24: */
25: public final String ENABLED = IAction.ENABLED;
26:
27: /**
28: * Whether the handler is capable of handling delegation of responsibilities
29: * at this time.
30: */
31: public final String HANDLED = IAction.HANDLED;
32: }
|