diff dwtx/jface/resource/ResourceRegistry.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 8a302fdb4140
children
line wrap: on
line diff
--- a/dwtx/jface/resource/ResourceRegistry.d	Sun Aug 03 17:01:51 2008 +0200
+++ b/dwtx/jface/resource/ResourceRegistry.d	Thu Aug 07 15:01:33 2008 +0200
@@ -12,13 +12,13 @@
  *******************************************************************************/
 module dwtx.jface.resource.ResourceRegistry;
 
-import tango.util.collection.model.SetView;
 
 import dwtx.core.commands.common.EventManager;
 import dwtx.jface.util.IPropertyChangeListener;
 import dwtx.jface.util.PropertyChangeEvent;
 
 import dwt.dwthelper.utils;
+import dwtx.dwtxhelper.Collection;
 
 /**
  * Abstract base class for various JFace registries.
@@ -45,7 +45,7 @@
      * @return the set of keys this manager knows about.  This collection
      * should be immutable.
      */
-    public abstract SetView!(String) getKeySet();
+    public abstract Set getKeySet();
 
     /**
      * Return whether or not the receiver has a value for the supplied key.