JVM Languages
relay.txt
Associated article: Comparing WFC and JFC
Tags: JVM Languages
Published source code accompanying the article by David M. Johnson in which he compares Microsoft's Windows Foundation Classes (WFC) with Sun's Java Foundation Classes (JFC) framework by developing an Internet Relay Chat (IRC) chat-client called "Relay." Also see RELAY.ZIP.
Comparing WFC and JFC
by David M. Johnson
Listing One
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
/** Frame with desktop pane and button that creates internal frames. */
public class example1 extends JFrame {
private JDesktopPane _desktop = ...


