FileDocCategorySizeDatePackage
BarebonesApplet.javaAPI DocExample668Wed Apr 05 11:25:42 BST 2000None

BarebonesApplet.java

/*
 * This example is from the book "Java Enterprise in a Nutshell".
 * Copyright (c) 1999 by O'Reilly & Associates.  
 * You may distribute this source code for non-commercial purposes only.
 * You may study, modify, and use this example for any purpose, as long as
 * this notice is retained.  Note that this example is provided "as is",
 * WITHOUT WARRANTY of any kind either expressed or implied.
 */

import org.omg.CORBA.*;
import java.applet.*;
import java.util.*;

public class BarebonesApplet extends Applet {
  public void start() {
    ORB myOrb = ORB.init(this, new Properties());
    System.out.println("I have an ORB!  Now what do I do with it?");
  }
}