Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JBrowser Source Code Files
JBrowser Source Code Files are provided in the
source package file.
You can download JBrowser source package as described in the previous tutorial and go to the "src" sub-folder to view Source Code files.
You can also browse JBrowser Source Code files below:
✍: FYIcenter
⏎ ru/atomation/jbrowser/interfaces/BrowserAdapter.java
/**
* No restrictions for this source.
*
* Author: CA>>>
* Site: atomation.ru
* Mail: Sashusik_EntXXI@Mail.ru
*/
package ru.atomation.jbrowser.interfaces;
import java.awt.event.FocusEvent;
import org.mozilla.interfaces.nsIDOMEvent;
import org.mozilla.interfaces.nsIDOMNode;
import org.mozilla.interfaces.nsIRequest;
import org.mozilla.interfaces.nsIWebProgress;
/**
* Adapter for {@link BrowserListener}
* @author caiiiycuk
*/
public class BrowserAdapter implements BrowserListener {
@Override
public void onSetTitle(String title) {
}
@Override
public void onSetVisible(boolean visibility) {
}
@Override
public void onSetSize(int w, int h) {
}
@Override
public void onSetStatus(String text) {
}
@Override
public void onSetUrlbarText(String url) {
}
@Override
public void onEnableForwardButton(boolean enabled) {
}
@Override
public void onEnableBackButton(boolean enabled) {
}
@Override
public void onEnableStopButton(boolean enabled) {
}
@Override
public void onEnableReloadButton(boolean enabled) {
}
@Override
public void onLoadingStarted() {
}
@Override
public void onLoadingEnded() {
}
@Override
public void onCloseWindow() {
}
@Override
public boolean beforeOpen(String uri) {
return true;
}
@Override
public void focusGained(FocusEvent e) {
}
@Override
public void focusLost(FocusEvent e) {
}
@Override
public void onSecurityChange(nsIWebProgress aWebProgress, nsIRequest aRequest, long aState) {
}
@Override
public boolean canHandleContent(String aContentType, boolean aIsContentPreferred, String[] aDesiredContentType) {
return false;
}
@Override
public void onBrowserAttached() {
}
@Override
public void onBrowserDetached() {
}
@Override
public void onProgressChange(nsIWebProgress aWebProgress,
nsIRequest aRequest, long aCurSelfProgress, long aMaxSelfProgress,
long aCurTotalProgress, long aMaxTotalProgress) {
}
@Override
public void showContextMenu(long aContextFlags, nsIDOMEvent aEvent,
nsIDOMNode aNode) {
}
}
⏎ ru/atomation/jbrowser/interfaces/BrowserAdapter.java
Or download all of them as a single archive file:
File name: jbrowser-1.9-fyi.zip File size: 625318 bytes Release date: 2022-11-10 Download
⇐ Download and Install JBrowser Source Package
2017-07-17, ≈25🔥, 1💬
Popular Posts:
JavaMail Source Code Files are provided in the source package file, httpcomponents-client-5. 2-src.zi...
How to compare performances of various XML parsers with the jaxp\SourceValidator.jav aprovided in th...
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module. JDK 11 Desktop module compiled ...
Where to get the Java source code for Connector/J 8.0 Core API module? Java source code files for Co...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...