JVM Languages
channel.txt
Associated article: Channels for Inter-Applet Communication
Tags: .NET JVM Languages
Published source code accompanying the article by Steve Ball and John Miller Crawford in which they discuss how Java applets can communicate with each other using Java's class variables (static fields). Also see CHANNEL.ZIP.
Channels for Inter-Applet Communication
by Steve Ball and John Miller Crawford
Listing One
class Origin {
public void set(int value) { this.value = value; }
public int get() { return value; }
public final static int US = 0;
public final static int UK = 1;
public final ...


