Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/components/nonpublic/datepicker/overrides/DateTimeConstants.java

Diff revisions: vs.
  @@ -1 +1,71 @@
1 - // This Source Code is Copyright & Licenced as indicated below
2 1 * Copyright 2007 Google Inc.
3 2 *
4 3 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 4 * use this file except in compliance with the License. You may obtain a copy of
6 5 * the License at
7 6 *
8 7 * http://www.apache.org/licenses/LICENSE-2.0
9 8 *
10 9 * Unless required by applicable law or agreed to in writing, software
11 10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 12 * License for the specific language governing permissions and limitations under
14 13 * the License.
15 14 */
16 15 * DateTimeConstants class encapsulate a collection of DateTime formatting
17 16 * symbols for use with DateTime format and parse services. This class extends
18 17 * GWT's Constants class. The actual symbol collections are defined in a set
19 18 * of property files named like "DateTimeConstants_xx.properties". GWT will
20 19 * will perform late binding to the property file that specific to user's
21 20 * locale.
22 21 */
23 22 String[] ampms();
24 23 String[] dateFormats();
25 24 String[] eraNames();
26 25 String[] eras();
27 26 String firstDayOfTheWeek();
28 27 String[] months();
29 28 String[] narrowMonths();
30 29 String[] narrowWeekdays();
31 30 String[] quarters();
32 31 String[] shortMonths();
33 32 String[] shortQuarters();
34 33 String[] shortWeekdays();
35 34 String[] standaloneMonths();
36 35 String[] standaloneNarrowMonths();
37 36 String[] standaloneNarrowWeekdays();
38 37 String[] standaloneShortMonths();
39 38 String[] standaloneShortWeekdays();
40 39 String[] standaloneWeekdays();
41 40 String[] timeFormats();
42 41 String[] weekdays();
43 42 String[] weekendRange();
43 + // This Source Code is Copyright & Licenced as indicated below
44 + package org.litesoft.GWT.forms.client.components.nonpublic.datepicker.overrides;
45 + /*
46 + * Copyright 2007 Google Inc.
47 + *
48 + * Licensed under the Apache License, Version 2.0 (the "License"); you may not
49 + * use this file except in compliance with the License. You may obtain a copy of
50 + * the License at
51 + *
52 + * http://www.apache.org/licenses/LICENSE-2.0
53 + *
54 + * Unless required by applicable law or agreed to in writing, software
55 + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
56 + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
57 + * License for the specific language governing permissions and limitations under
58 + * the License.
59 + */
60 +
61 + import com.google.gwt.i18n.client.*;
62 +
63 + /**
64 + * DateTimeConstants class encapsulate a collection of DateTime formatting
65 + * symbols for use with DateTime format and parse services. This class extends
66 + * GWT's Constants class. The actual symbol collections are defined in a set
67 + * of property files named like "DateTimeConstants_xx.properties". GWT will
68 + * will perform late binding to the property file that specific to user's
69 + * locale.
70 + */
71 + public interface DateTimeConstants extends Constants {
72 + String[] ampms();
73 +
74 + String[] dateFormats();
75 +
76 + String[] eraNames();
77 +
78 + String[] eras();
79 +
80 + String firstDayOfTheWeek();
81 +
82 + String[] months();
83 +
84 + String[] narrowMonths();
85 +
86 + String[] narrowWeekdays();
87 +
88 + String[] quarters();
89 +
90 + String[] shortMonths();
91 +
92 + String[] shortQuarters();
93 +
94 + String[] shortWeekdays();
95 +
96 + String[] standaloneMonths();
97 +
98 + String[] standaloneNarrowMonths();
99 +
100 + String[] standaloneNarrowWeekdays();
101 +
102 + String[] standaloneShortMonths();
103 +
104 + String[] standaloneShortWeekdays();
105 +
106 + String[] standaloneWeekdays();
107 +
108 + String[] timeFormats();
109 +
110 + String[] weekdays();
111 +
112 + String[] weekendRange();
113 + }