comparison dwtx/core/commands/IParameterValues.d @ 104:04b47443bb01

Reworked the collection uses to make use of a wrapper collection that is compatible to the Java Collections. These new wrappers now use the tango.util.containers instead of the tango.util.collections.
author Frank Benoit <benoit@tionex.de>
date Thu, 07 Aug 2008 15:01:33 +0200
parents 6518c18a01f7
children
comparison
equal deleted inserted replaced
103:2d6540440fe6 104:04b47443bb01
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 ******************************************************************************/ 12 ******************************************************************************/
13 13
14 module dwtx.core.commands.IParameterValues; 14 module dwtx.core.commands.IParameterValues;
15 15
16 import tango.util.collection.model.Map;
17
18 import dwt.dwthelper.utils; 16 import dwt.dwthelper.utils;
17 import dwtx.dwtxhelper.Collection;
19 18
20 /** 19 /**
21 * <p> 20 * <p>
22 * The parameters for a command. This interface will only be consulted if the 21 * The parameters for a command. This interface will only be consulted if the
23 * parameters need to be displayed to the user. Otherwise, they will be ignored. 22 * parameters need to be displayed to the user. Otherwise, they will be ignored.
34 * will be interpreted by the handler for the command. 33 * will be interpreted by the handler for the command.
35 * 34 *
36 * @return A map of the externalizable name of the parameter value (<code>String</code>) 35 * @return A map of the externalizable name of the parameter value (<code>String</code>)
37 * to the actual value of the parameter (<code>String</code>). 36 * to the actual value of the parameter (<code>String</code>).
38 */ 37 */
39 public Map!(String,String) getParameterValues(); 38 public Map getParameterValues();
40 } 39 }