FileDocCategorySizeDatePackage
MsgWhiteboardTest.javaAPI DocExample637Thu Apr 10 23:50:32 BST 1997dcj.examples.Collaborative

MsgWhiteboardTest

public class MsgWhiteboardTest extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)

    String name = argv[0];
    String host = argv[1];
    String port = argv[2];
    int r = Integer.parseInt(argv[3]);
    int g = Integer.parseInt(argv[4]);
    int b = Integer.parseInt(argv[5]);
    Color color = new Color(r, g, b);
    try {
      MsgWhiteboardUser wu = new MsgWhiteboardUser(name, color,
                                             host, Integer.parseInt(port));
      while (true) {}
    }
    catch (Exception e) {}