org.eclipse.swt.browser
Interface TitleListener

All Superinterfaces:
java.util.EventListener, SWTEventListener

public interface TitleListener
extends SWTEventListener

This listener interface may be implemented in order to receive a TitleEvent notification when the title of the document displayed in a Browser is known or has been changed.

Since:
3.0
See Also:
Browser.addTitleListener(TitleListener), Browser.removeTitleListener(TitleListener)

Method Summary
 void changed(TitleEvent event)
          This method is called when the title of the current document is available or has changed.
 

Method Detail

changed

void changed(TitleEvent event)
This method is called when the title of the current document is available or has changed.

The following fields in the TitleEvent apply:

Parameters:
event - the TitleEvent that contains the title of the document currently displayed in a Browser
Since:
3.0