Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser events.
|
com.teamdev.jxbrowser.navigation.callback |
The navigation callbacks.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
com.teamdev.jxbrowser.plugin.callback |
The plugin service callbacks.
|
com.teamdev.jxbrowser.view.swing.callback |
Contains the implementations of the callbacks that display Swing UI dialogs.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BrowserSyncCallback<P,R>
A common interface that all synchronous browser callbacks must extend.
|
interface |
CreatePopupCallback
This callback is invoked when browser decides whether a new popup instance can be created or not.
|
interface |
InjectCssCallback
This callback is invoked when the document element has been created and a custom style sheet can
be injected into the document.
|
interface |
InjectJsCallback
This callback is invoked when the document element has been created and a custom JavaScript can
be injected into the document.
|
interface |
OpenPopupCallback
This callback is invoked when a new popup browser instance should be opened.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NavigationSyncCallback<P,R>
A common interface for all synchronous navigation callbacks must extend.
|
interface |
StartNavigationCallback
This callback is invoked before the engine starts navigation to a resource.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BeforeSendHeadersCallback
The callback that is invoked when a URL request is about to occur and the initial HTTP headers
have been prepared.
|
interface |
BeforeSendProxyHeadersCallback
The callback that is invoked when a URL request is about to occur and the initial HTTP headers
have been prepared through the proxy connection.
|
interface |
BeforeSendUploadDataCallback
The callback that is invoked before the upload data is sent to the web server.
|
interface |
BeforeStartTransactionCallback
The callback that is invoked before the network transaction starts.
|
interface |
BeforeUrlRequestCallback
The callback is invoked when an HTTP request is about to occur.
|
interface |
CanAccessFileCallback
The callback is invoked when the engine checks if the given file can be accessed or not.
|
interface |
CanGetCookiesCallback
The callback is invoked to check if the engine can access the given cookie or not.
|
interface |
CanSetCookieCallback
The callback is invoked to check if the given cookie can be set or not.
|
interface |
InterceptRequestCallback
The callback is invoked when a URL request is about to be sent out.
|
interface |
LoadResourceCallback
The callback is invoked to check if the given resource can be loaded or not.
|
interface |
NetworkSyncCallback<P,R>
A common interface for all synchronous network service callbacks must extend.
|
interface |
ReceiveHeadersCallback
The callback is invoked when the response headers have been received for a URL request.
|
interface |
VerifyCertificateCallback
The callback is invoked when certificate verification is required.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AllowPluginCallback
This callback is invoked when the engine wants to check whether a specific plugin is allowed or
not.
|
interface |
PluginsSyncCallback<P,R>
A common interface for all synchronous plugin service callbacks must extend.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultOpenPopupCallback
The default
OpenPopupCallback implementation that creates and shows a new window with the
embedded popup browser. |