import java.applet.Applet;
import java.awt.Button;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

// $Id$

/*
 * Copyright (c) 2003 OKbridge, Inc.
 * 4655 Cass Street, Suite 204, San Diego, CA 92109
 * All rights reserved.
 *
 * THIS IS AN UNPUBLISHED WORK CONTAINING CONFIDENTIAL AND PROPRIETARY
 * INFORMATION BELONGING TO OKBRIDGE, INC.  DISCLOSURE, USE OR REPRODUCTION
 * WITHOUT PRIOR WRITTEN AUTHORIZATION OF OKBRIDGE, INC. IS PROHIBITED.
 */

// $Log$

/**
 * @author <a href="mailto:martin@okbridge.com">Martin R. Linenweber</a>
 */

public class JarTest extends Applet {
  static Frame frame;
  public void init() {
    main2();
  }

  public static void main(String[] argv) {
    main2();
  }

  public static void main2() {
    frame = new Frame();
    frame.setLayout(new FlowLayout());
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        frame.dispose();
      }
    });

    frame.add(new JarLabel1("JARLABEL-1"));
    frame.add(new JarLabel2("JARLABEL-2"));

    frame.pack();
    frame.show();
  }
}
