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/PromptServiceFactory.java

package org.mozilla.browser.impl;

import org.mozilla.interfaces.nsIFactory;
import org.mozilla.interfaces.nsISupports;
import org.mozilla.xpcom.Mozilla;

public class PromptServiceFactory implements nsIFactory {

    public static final String PROMPTSERVICEFACTORY_CID = "{eeb4e53d-5cec-47ac-ad0b-db7d0a980894}"; //$NON-NLS-1$

    public PromptServiceFactory() {
    }

    public nsISupports queryInterface(String aIID) {
        return Mozilla.queryInterface(this, aIID);
    }

    public nsISupports createInstance(nsISupports aOuter, String iid) {
        PromptService promptService = new PromptService();
        return promptService;
    }

    public void lockFactory(boolean lock) {
    }
}

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