diff options
| author | Paul Buetow <paul@buetow.org> | 2009-03-11 18:54:43 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2009-03-11 18:54:43 +0000 |
| commit | d70cecf8fdf115d41667f74beeba4d03470723fa (patch) | |
| tree | 1e1be90dccd622ec8786d883cc71547b1103ef36 /sources/shared | |
| parent | 6deeb57d62c238d3f152cdef1d782b441c73797a (diff) | |
JCalendarDatePicker improved
Diffstat (limited to 'sources/shared')
| -rw-r--r-- | sources/shared/MyDate.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sources/shared/MyDate.java b/sources/shared/MyDate.java index 1c13787..5ff35ab 100644 --- a/sources/shared/MyDate.java +++ b/sources/shared/MyDate.java @@ -15,6 +15,7 @@ import java.util.*; public class MyDate extends Date { private final static long serialVersionUID = 1L; private final static String [] DAYS = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; + //private Date date; /** * Copy constructor. @@ -25,6 +26,16 @@ public class MyDate extends Date { } /** + * Copy constructor. + * @param calendar Specifies the date objekt to copy the time from. + */ + /* + public MyDate(Calendar calendar) { + super(calendar.getTime()); + } + */ + + /** * @see java.lang.Object#toString() */ public String toString() { |
