comparison dwt/accessibility/AccessibleControlEvent.d @ 123:63a09873578e

Fixed compile errors
author Jacob Carlborg <doob@me.com>
date Thu, 15 Jan 2009 23:08:54 +0100
parents d8635bb48c7c
children
comparison
equal deleted inserted replaced
122:2e671fa40eec 123:63a09873578e
43 public int x, y; // IN/OUT 43 public int x, y; // IN/OUT
44 public int width, height; // OUT 44 public int width, height; // OUT
45 public int detail; // IN/OUT 45 public int detail; // IN/OUT
46 public String result; // OUT 46 public String result; // OUT
47 public Object children[]; // [OUT] 47 public Object children[]; // [OUT]
48
49 static final long serialVersionUID = 3257281444169529141L;
50
51 /**
52 * Constructs a new instance of this class.
53 *
54 * @param source the object that fired the event
55 */
56 public this (Object source) {
57 super(source);
58 }
48 59
49 static final long serialVersionUID = 3257281444169529141L; 60 /**
50 61 * Returns a String containing a concise, human-readable
51 /** 62 * description of the receiver.
52 * Constructs a new instance of this class. 63 *
53 * 64 * @return a String representation of the event
54 * @param source the object that fired the event 65 */
55 */ 66 public String toString () {
56 public this (Object source) { 67 return Format("AccessibleControlEvent {childID={}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}" , childID , //$NON-NLS-1$
57 super(source); 68 " accessible=" , accessible , //$NON-NLS-1$
58 } 69 " x=" , x , //$NON-NLS-1$
59 70 " y=" , y , //$NON-NLS-1$
60 /** 71 " width=" , width , //$NON-NLS-1$
61 * Returns a String containing a concise, human-readable 72 " height=" , height , //$NON-NLS-1$
62 * description of the receiver. 73 " detail=" , detail , //$NON-NLS-1$
63 * 74 " result=" , result , //$NON-NLS-1$
64 * @return a String representation of the event 75 "}"); //$NON-NLS-1$
65 */
66 public String toString () {
67 return Format("AccessibleControlEvent {childID={}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}" , childID , //$NON-NLS-1$
68 " accessible=" , accessible , //$NON-NLS-1$
69 " x=" , x , //$NON-NLS-1$
70 " y=" , y , //$NON-NLS-1$
71 " width=" , width , //$NON-NLS-1$
72 " height=" , height , //$NON-NLS-1$
73 " detail=" , detail , //$NON-NLS-1$
74 " result=" , result , //$NON-NLS-1$
75 "}"); //$NON-NLS-1$
76 }
77 } 76 }
77 }