Last commit for vem/VemNode.java: 3cc7cc1512764c468ed7dbcc0262be380a01539f

Updated the server side communication layer

daa82 [2001-05-09 06:04:20]
Updated the server side communication layer
  1. package psl.chime.vem;
  2.  
  3. import java.lang.*;
  4. import java.util.*;
  5. import java.io.*;
  6. import siena.*;
  7.  
  8. // Nodes of the default file settings table
  9. class VemNode
  10. {
  11. String file;
  12. String type;
  13. String sub;
  14. String object;
  15.  
  16. public VemNode (String file, String type, String sub, String object)
  17. {
  18. file = this.file;
  19. type = this.type;
  20. sub = this.sub;
  21. object = this.object;
  22. }
  23.  
  24. public VemNode ()
  25. {
  26. this ("", "", "", "");
  27. }
  28. }