Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.eclipse.swt.browser: Javadoc index of package org.eclipse.swt.browser.


Package Samples:

org.eclipse.swt.browser

Classes:

WindowEvent: A WindowEvent is sent by a Browser when a new window needs to be created or when an existing window needs to be closed. This notification occurs when a javascript command such as window.open or window.close gets executed by a Browser . The following example shows how WindowEvent 's are typically handled. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Main Window"); shell.setLayout(new FillLayout()); Browser browser = new Browser(shell, SWT.NONE); initialize(display, browser); shell.open(); browser.setUrl("http://www.eclipse.org"); ...
LocationEvent: A LocationEvent is sent by a Browser to LocationListener 's when the Browser navigates to a different URL. This notification typically occurs when the application navigates to a new location with Browser.setUrl(String) 55 or when the user activates a hyperlink.
VisibilityWindowAdapter: This adapter class provides default implementations for the methods described by the VisibilityWindowListener interface. Classes that wish to deal with WindowEvent 's can extend this class and override only the methods which they are interested in.
ProgressAdapter: This adapter class provides default implementations for the methods described by the ProgressListener interface. Classes that wish to deal with ProgressEvent 's can extend this class and override only the methods which they are interested in.
LocationAdapter: This adapter class provides default implementations for the methods described by the LocationListener interface. Classes that wish to deal with LocationEvent 's can extend this class and override only the methods which they are interested in.
StatusTextEvent: A StatusTextEvent is sent by a Browser to StatusTextListener 's when the status text is changed. The status text is typically displayed in the status bar of a browser application.
ProgressEvent: A ProgressEvent is sent by a Browser to ProgressListener 's when a progress is made during the loading of the current URL or when the loading of the current URL has been completed.
ProgressListener: This listener interface may be implemented in order to receive a ProgressEvent notification when a Browser makes a progress in loading the current URL or when the current URL has been loaded.
CloseWindowListener: This listener interface may be implemented in order to receive a WindowEvent notification when a Browser is about to be closed and when its host window should be closed by the application.
TitleListener: 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.
VisibilityWindowListener: This listener interface may be implemented in order to receive a WindowEvent notification when a window hosting a Browser needs to be displayed or hidden.
StatusTextListener: This listener interface may be implemented in order to receive a StatusTextEvent notification when the status text for a Browser needs to be updated.
OpenWindowListener: This listener interface may be implemented in order to receive a WindowEvent notification when a new Browser needs to be provided by the application.
TitleEvent: A TitleEvent is sent by a Browser to TitleListener 's when the title of the current document is available or when it is modified.
LocationListener: This listener interface may be implemented in order to receive a LocationEvent notification when a Browser navigates to a different URL.
Browser: Instances of this class implement the browser user interface metaphor. It allows the user to visualize and navigate through HTML documents. Note that although this class is a subclass of Composite , it does not make sense to set a layout on it. IMPORTANT: This class is not intended to be subclassed.
WindowCreator
PromptServiceFactory
PromptService
PromptDialog
InputStream
WebSite

Home | Contact Us | Privacy Policy | Terms of Service