diff 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
line wrap: on
line diff
--- a/dwtx/core/commands/IParameterValues.d	Sun Aug 03 17:01:51 2008 +0200
+++ b/dwtx/core/commands/IParameterValues.d	Thu Aug 07 15:01:33 2008 +0200
@@ -13,9 +13,8 @@
 
 module dwtx.core.commands.IParameterValues;
 
-import tango.util.collection.model.Map;
-
 import dwt.dwthelper.utils;
+import dwtx.dwtxhelper.Collection;
 
 /**
  * <p>
@@ -36,5 +35,5 @@
      * @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!(String,String) getParameterValues();
+    public Map getParameterValues();
 }