diff dwtx/ui/internal/forms/widgets/IFocusSelectable.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 5d489b9f966c
children
line wrap: on
line diff
--- a/dwtx/ui/internal/forms/widgets/IFocusSelectable.d	Sun Aug 03 17:01:51 2008 +0200
+++ b/dwtx/ui/internal/forms/widgets/IFocusSelectable.d	Thu Aug 07 15:01:33 2008 +0200
@@ -12,13 +12,12 @@
  *******************************************************************************/
 module dwtx.ui.internal.forms.widgets.IFocusSelectable;
 
-import tango.util.collection.HashMap;
+import dwtx.dwtxhelper.Collection;
 
 import dwt.graphics.Rectangle;
 import dwt.dwthelper.utils;
 
 public interface IFocusSelectable {
-    alias HashMap!(String,Object) Hashtable;
     bool isFocusSelectable(Hashtable resourceTable);
     bool setFocus(Hashtable resourceTable, bool direction);
     Rectangle getBounds();