JVM Languages
intrapp.txt
Associated article: Java and Inter-Applet Communication
Tags: JVM Languages
Published source code accompanying the article by Andrew Meckler in which he shows you can enable inter-applet communication among multiple HTML pages displayed in the browser at one time.
Java and Inter-Applet Communication
by Andrew Meckler
Listing One
import java.applet.*;
import java.util.*;
public class CommManager
{
private static Hashtable applets = new Hashtable();
public static Applet getApplet(String s)
{
return (Applet)applets.get(s);
}
public static boolean regApplet(String ...


