1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.web.bind;
17
18 import org.kuali.rice.core.api.util.RiceKeyConstants;
19 import org.kuali.rice.core.web.format.FormatException;
20
21 import java.io.Serializable;
22 import java.sql.Date;
23 import java.text.ParseException;
24 import java.util.Calendar;
25
26
27
28
29
30
31
32
33 public class UifCalendarEditor extends UifDateEditor implements Serializable {
34 private static final long serialVersionUID = 8123569337264797008L;
35
36
37
38
39
40
41
42
43 @Override
44 public String getAsText() {
45 if (this.getValue() == null) {
46 return null;
47 }
48 if ("".equals(this.getValue())) {
49 return null;
50 }
51
52 return getDateTimeService().toDateString(new Date(((java.util.Calendar) this.getValue()).getTimeInMillis()));
53 }
54
55
56
57
58
59
60
61
62
63 protected Object convertToObject(String text) throws IllegalArgumentException {
64 try {
65
66 if (text == null || text.equals("")) {
67 return null;
68 }
69
70 Date result = getDateTimeService().convertToSqlDate(text);
71 Calendar calendar = getDateTimeService().getCalendar(result);
72 calendar.setTime(result);
73 if (calendar.get(Calendar.YEAR) < 1000 && verbatimYear(text).length() < 4) {
74 throw new FormatException("illegal year format", RiceKeyConstants.ERROR_DATE, text);
75 }
76 return calendar;
77 } catch (ParseException e) {
78 throw new FormatException("parsing", RiceKeyConstants.ERROR_DATE, text, e);
79 }
80 }
81
82 }