// rpf, 011301 for JUG group cell phone project // done on hearthside // javadoc added 020201 package jug; import java.io.*; import java.lang.String; /** * Represents simple "space" through which messages are transferred. * (second doc line). Two strings are used for the transfer with * one going from base to phone and the other from phone to base. */ public class Space1 { public static void main (String[] args) { System.out.println("Space1"); } /** * Phone writes string to this slot for pickup by base." */ String toBase = "null init for toBase string"; /** * Base writes string to this slot for pickup by phone." */ String fromBase = "null init for fromBase string"; }