Internet Foundation Classes

The Internet Foundation Classes (IFC) is a graphics library for Java originally developed by Netcode Corporation and first released by Netscape Corporation on December 16, 1996.

The Java IFC was fairly close to the early versions of the Objective C NeXTStep classes for NeXT. A builder tool was also included under the IFC umbrella that was close in spirit (but significantly limited in functionality) to NeXT's Interface Builder. This ecosystem was attractive to NeXT application developers interested in looking at the Java language.

History

On April 2, 1997, Sun Microsystems and Netscape announced their intention to combine IFC with other technologies to form the Java Foundation Classes.[1]

Ultimately, Sun merged the IFC with other technologies under the name "Swing", adding the capability for a pluggable look and feel of the widgets.

Because its technology has been merged to constitute Swing and Java 2D, IFC is now no longer maintained.

Differences with Swing

Swing drew a lot of features from IFC:

However, Swing also improved IFC in a lot of ways:

Examples

Hello World

This is the classic Hello world program in IFC:

import netscape.application.*;
import netscape.util.*;

public class HelloWorld extends Application {

   public void init() {
       super.init();
       // Create a text field
       TextField textField = new TextField(100, 24, 128, 24);
       // Set the string to be displayed in the text field.
       textField.setStringValue("Hello World");
       // Add the text field to the view hierarchy.
       mainRootView().addSubview(textField);
   }

    // This method allows HelloWorld to run as a stand alone application.
    public static void main(String args[]) {
        HelloWorld app = new HelloWorld ();
        ExternalWindow mainWindow = new ExternalWindow();

        app.setMainRootView(mainWindow.rootView());
        Size size = mainWindow.windowSizeForContentSize(320, 200);
        mainWindow.sizeTo(size.width, size.height);
        mainWindow.show();

        app.run();
    }
}

To be compared with the equivalent Java Swing code:

import javax.swing.*;

public class HelloWorld extends JFrame {
    public HelloWorld() {
       setDefaultCloseOperation(DISPOSE_ON_CLOSE);
       add(new JLabel("Hello, World!"));
    }

    public static void main(String[] args) {
        HelloWorld app = new HelloWorld();
        app.pack();
        app.setVisible(true);
    }
}

References

External links

The last places, where to download the IFC:

All find from

The web-archive where is the last place to find really all files:

Additional you can still find IFC here:

This article is issued from Wikipedia - version of the 9/10/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.