1 11 package org.eclipse.swt.custom; 12 13 14 import org.eclipse.swt.events.*; 15 import org.eclipse.swt.widgets.*; 16 17 20 public class CTabFolderEvent extends TypedEvent { 21 24 public Widget item; 25 26 31 public boolean doit; 32 33 39 public int x; 40 46 public int y; 47 53 public int width; 54 60 public int height; 61 62 static final long serialVersionUID = 3760566386225066807L; 63 64 69 CTabFolderEvent(Widget w) { 70 super(w); 71 } 72 73 79 public String toString() { 80 String string = super.toString (); 81 return string.substring (0, string.length() - 1) + " item=" + item 83 + " doit=" + doit 84 + " x=" + x 85 + " y=" + y 86 + " width=" + width 87 + " height=" + height 88 + "}"; 89 } 90 } 91 | Popular Tags |