comparison dwt/accessibility/AccessibleTextAdapter.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
42 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 42 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
43 * 43 *
44 * @since 3.0 44 * @since 3.0
45 */ 45 */
46 public abstract class AccessibleTextAdapter : AccessibleTextListener { 46 public abstract class AccessibleTextAdapter : AccessibleTextListener {
47 47
48 /** 48 /**
49 * Sent when an accessibility client requests the current character offset 49 * Sent when an accessibility client requests the current character offset
50 * of the text caret. 50 * of the text caret.
51 * The default behavior is to do nothing. 51 * The default behavior is to do nothing.
52 * <p> 52 * <p>
59 * <li>offset [OUT] - the current offset of the text caret</li> 59 * <li>offset [OUT] - the current offset of the text caret</li>
60 * </ul> 60 * </ul>
61 */ 61 */
62 public void getCaretOffset (AccessibleTextEvent e) { 62 public void getCaretOffset (AccessibleTextEvent e) {
63 } 63 }
64 64
65 /** 65 /**
66 * Sent when an accessibility client requests the range of the current 66 * Sent when an accessibility client requests the range of the current
67 * text selection. 67 * text selection.
68 * The default behavior is to do nothing. 68 * The default behavior is to do nothing.
69 * <p> 69 * <p>