comparison dwt/accessibility/AccessibleTextEvent.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 9a64a7781bab
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
13 module dwt.accessibility.AccessibleTextEvent; 13 module dwt.accessibility.AccessibleTextEvent;
14 14
15 15
16 import dwt.internal.DWTEventObject; 16 import dwt.internal.DWTEventObject;
17 import tango.text.convert.Format; 17 import tango.text.convert.Format;
18 import dwt.dwthelper.utils;
18 19
19 /** 20 /**
20 * Instances of this class are sent as a result of 21 * Instances of this class are sent as a result of
21 * accessibility clients sending messages to controls 22 * accessibility clients sending messages to controls
22 * asking for detailed information about the implementation 23 * asking for detailed information about the implementation
51 * Returns a string containing a concise, human-readable 52 * Returns a string containing a concise, human-readable
52 * description of the receiver. 53 * description of the receiver.
53 * 54 *
54 * @return a string representation of the event 55 * @return a string representation of the event
55 */ 56 */
56 override public char[] toString () { 57 override public String toString () {
57 return Format( "AccessibleTextEvent {{childID={} offset={} length={}}", 58 return Format( "AccessibleTextEvent {{childID={} offset={} length={}}",
58 childID, 59 childID,
59 offset, 60 offset,
60 length); 61 length);
61 } 62 }