view org.eclipse.core.commands/src/org/eclipse/core/commands/IParameterValues.d @ 125:c43718956f21 default tip

Updated the snippets status.
author Jacob Carlborg <doob@me.com>
date Thu, 11 Aug 2011 19:55:14 +0200
parents bc29606a740c
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 ******************************************************************************/

module org.eclipse.core.commands.IParameterValues;

import java.lang.all;
import java.util.Map;

/**
 * <p>
 * The parameters for a command. This interface will only be consulted if the
 * parameters need to be displayed to the user. Otherwise, they will be ignored.
 * </p>
 *
 * @since 3.1
 */
public interface IParameterValues {

    /**
     * Returns a map keyed by externalized names for parameter values. These
     * names should be human-readable, and are generally for display to the user
     * in a user interface of some sort. The values should be actual values that
     * will be interpreted by the handler for the command.
     *
     * @return A map of the externalizable name of the parameter value (<code>String</code>)
     *         to the actual value of the parameter (<code>String</code>).
     */
    public Map getParameterValues();
}