3 // DOVEBrowserApplet.java
6 // Michael Kircher (mk1@cs.wustl.edu)
9 // Entry point for the demo when started inside an applet.
11 // ============================================================================
16 public class DOVEBrowserApplet
extends java
.applet
.Applet
{
19 static String nameServiceIOR_
= null;
21 public DOVEBrowserApplet () {
26 // in case of an applet use the following line, else not!
27 nameServiceIOR_
= this.getParameter ("NSIOR");
29 if (nameServiceIOR_
== null) {
30 System
.out
.println ("The DOVE Browser cannot run, because no Naming Service IOR was found!");
34 demoCore_
= new DemoCore (nameServiceIOR_
, // name service IOR
35 null, // name service port
37 false, // don't use queueing
38 this); // pointer to the applet