1 11 package org.eclipse.swt.browser; 12 13 import org.eclipse.swt.widgets.*; 14 import org.eclipse.swt.events.*; 15 16 26 public class LocationEvent extends TypedEvent { 27 28 public String location; 29 30 34 public boolean top; 35 36 40 public boolean doit; 41 42 static final long serialVersionUID = 3906644198244299574L; 43 44 LocationEvent(Widget w) { 45 super(w); 46 } 47 } 48 | Popular Tags |