Java tutorial
import org.eclipse.swt.SWT; import org.eclipse.swt.browser.Browser; import org.eclipse.swt.browser.LocationEvent; import org.eclipse.swt.browser.LocationListener; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class BrowserLocationListener { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Browser browser = new Browser(shell, SWT.NONE); browser.setBounds(5, 5, 600, 600); browser.addLocationListener(new LocationListener() { public void changed(LocationEvent event) { if (event.top) System.out.println(event.location); } public void changing(LocationEvent event) { } }); browser.setUrl("http://java2s.com"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }