1 11 package org.eclipse.swt.events; 12 13 14 import org.eclipse.swt.widgets.Event; 15 16 22 23 public final class ShellEvent extends TypedEvent { 24 25 29 public boolean doit; 30 31 static final long serialVersionUID = 3257569490479888441L; 32 33 39 public ShellEvent(Event e) { 40 super(e); 41 this.doit = e.doit; 42 } 43 44 50 public String toString() { 51 String string = super.toString (); 52 return string.substring (0, string.length() - 1) + " doit=" + doit 54 + "}"; 55 } 56 } 57 58 | Popular Tags |