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/impl/XREAppData.java

package org.mozilla.browser.impl;

import java.io.File;

import org.mozilla.browser.mt;
import org.mozilla.xpcom.IXREAppData;

/**
 * Describes entry point for XUL Application
 * (content of the application.ini file)
 *
 * http://developer.mozilla.org/en/docs/XUL_Application_Packaging
 */
public class XREAppData implements IXREAppData {

    public String getVendor() {
        return mt.t("XREAppData.Vendor"); //$NON-NLS-1$
    }

    public String getName() {
        return mt.t("XREAppData.Name"); //$NON-NLS-1$
    }

    public int getFlags() {
        return 0;
    }

    public File getDirectory() {
        return null;
    }

    public String getID() {
        return mt.t("XREAppData.ID"); //$NON-NLS-1$
    }

    public String getVersion() {
        return mt.t("XREAppData.Version"); //$NON-NLS-1$
    }

    public String getBuildID() {
        return mt.t("XREAppData.BuildID"); //$NON-NLS-1$
    }

    public String getCopyright() {
        return mt.t("XREAppData.Copyright"); //$NON-NLS-1$
    }

}

org/mozilla/browser/impl/XREAppData.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, 8525👍, 1💬