comparison dwtx/text/edits/TextEditCopier.d @ 130:b56e9be9fe88

ctors to this
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 00:30:47 +0200
parents eb30df5ca28b
children c4fb132a086c
comparison
equal deleted inserted replaced
129:eb30df5ca28b 130:b56e9be9fe88
42 * 42 *
43 * @param edit the edit to copy 43 * @param edit the edit to copy
44 * 44 *
45 * @see #perform() 45 * @see #perform()
46 */ 46 */
47 public TextEditCopier(TextEdit edit) { 47 public this(TextEdit edit) {
48 super(); 48 super();
49 Assert.isNotNull(edit); 49 Assert.isNotNull(edit);
50 fEdit= edit; 50 fEdit= edit;
51 fCopies= new HashMap(); 51 fCopies= new HashMap();
52 } 52 }