1 11 package org.eclipse.swt.accessibility; 12 13 14 import org.eclipse.swt.internal.*; 15 16 32 public class AccessibleTextEvent extends SWTEventObject { 33 public int childID; public int offset, length; 36 static final long serialVersionUID = 3977019530868308275L; 37 38 43 public AccessibleTextEvent (Object source) { 44 super (source); 45 } 46 47 53 public String toString () { 54 return "AccessibleTextEvent {childID=" + childID + " offset=" + offset + " length=" + length + "}"; } 59 } 60 | Popular Tags |