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:
Where to get the Java source code for Connector/J 8.0 Core Impl module? Java source code files for C...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...