comparison dwtx/jface/internal/InternalPolicy.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 1a6747be662d
children
comparison
equal deleted inserted replaced
103:2d6540440fe6 104:04b47443bb01
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 ******************************************************************************/ 12 ******************************************************************************/
13 module dwtx.jface.internal.InternalPolicy; 13 module dwtx.jface.internal.InternalPolicy;
14 14
15 import tango.util.collection.model.Map; 15 import dwtx.dwtxhelper.Collection;
16 16
17 /** 17 /**
18 * Internal class used for non-API debug flags. 18 * Internal class used for non-API debug flags.
19 * 19 *
20 * @since 3.3 20 * @since 3.3
31 31
32 /** 32 /**
33 * (NON-API) Instead of logging current conflicts they can be 33 * (NON-API) Instead of logging current conflicts they can be
34 * held here. If there is a problem, they can be reported then. 34 * held here. If there is a problem, they can be reported then.
35 */ 35 */
36 public static Map!(Object/+???+/,Object/+???+/) currentConflicts = null; 36 public static Map currentConflicts = null;
37 } 37 }