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

org/mozilla/browser/RunnableEx.java

package org.mozilla.browser;

import java.util.concurrent.Callable;

/**
 * Interface similar to {@link Runnable}, but allows
 * to throw an exception from run() method.
 */
public abstract class RunnableEx implements Callable<Void>
{
    /**
     * Method to be executed.
     *
     * @throws Exception - exception that can be thrown
     */
    public abstract void run()
        throws Exception;

    /**
     * Internal method.
     * Use {@link RunnableEx#run()} instead.
     * @return always null
     * @throws Exception - exception from execution
     */
    public final Void call() throws Exception {
        run();
        return null;
    }

}

org/mozilla/browser/RunnableEx.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 

 

Downloading JBrowser 1.9

Download and Install JBrowser Source Package

Download and Review JBrowser

⇑⇑ FAQ for JBrowser

2017-07-17, 8607👍, 1💬