01: /*
02: * tableApp
03: *
04: * Enhydra super-servlet business object
05: *
06: * Prozone
07: *
08: */
09:
10: package tableapp.business;
11:
12: // Enhydra SuperServlet specification imports
13: import tableapp.spec.Dater;
14:
15: // Standard imports
16: import java.util.Date;
17: import java.text.DateFormat;
18:
19: public class DaterImpl implements Dater {
20:
21: public String getDate() {
22: return DateFormat.getTimeInstance(DateFormat.MEDIUM).format(
23: new Date());
24: }
25: }
|