01: package com.etymon.pj.object;
02:
03: import java.io.*;
04: import com.etymon.pj.exception.*;
05:
06: /**
07: A representation of the PDF Date type.
08: @author Nassib Nassar
09: */
10: public class PjDate extends PjString {
11:
12: /**
13: Creates a Date object.
14: @param s the string value to initialize this object to.
15: */
16: public PjDate(String s) {
17: super (s);
18: }
19:
20: // this should be added (or something like this).
21: // this would encode the date as a string.
22: /*
23: public PjDate(Date d) {
24: }
25: */
26:
27: // this should be added, similar to isLike in other classes in this package.
28: /*
29: public static boolean isLike(PjString s) {
30: }
31: */
32:
33: }
|