1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 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 12 package org.eclipse.core.commands; 13 14 /** 15 * <p> 16 * State identifiers that are understood by named handle objects that implement 17 * {@link IObjectWithState}. 18 * </p> 19 * <p> 20 * Clients may implement or extend this class. 21 * </p> 22 * 23 * @since 3.2 24 */ 25 public interface INamedHandleStateIds { 26 27 /** 28 * The state id used for overriding the description of a named handle 29 * object. This state's value must return a {@link String}. 30 */ 31 public static String DESCRIPTION = "DESCRIPTION"; //$NON-NLS-1$ 32 33 /** 34 * The state id used for overriding the name of a named handle object. This 35 * state's value must return a {@link String}. 36 */ 37 public static String NAME = "NAME"; //$NON-NLS-1$ 38 } 39