01: package sample.evolve;
02:
03: import java.io.*;
04: import java.util.*;
05:
06: /**
07: * Updatable class. DemoServer instantiates this class and calls
08: * show() on the created object.
09: */
10:
11: public class WebPage {
12: public void show(OutputStreamWriter out) throws IOException {
13: Calendar c = new GregorianCalendar();
14: out.write(c.getTime().toString());
15: out
16: .write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
17: }
18: }
|