Changeset 238:380bad9f6852 for dwt/accessibility/AccessibleEvent.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/accessibility/AccessibleEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/accessibility/AccessibleEvent.d
r72 r238 12 12 *******************************************************************************/ 13 13 module dwt.accessibility.AccessibleEvent; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 46 48 * the childID specified by the client. 47 49 */ 48 public char[]result;50 public String result; 49 51 50 52 //static final long serialVersionUID = 3257567304224026934L; … … 65 67 * @return a string representation of the event 66 68 */ 67 public char[]toString () {69 public String toString () { 68 70 return Format( "AccessibleEvent {childID={} result={}}", childID, result ); 69 71 }
