@@ -197,61 +197,81 @@ private static void setUnicodeKeyword(final java.util.Locale.Builder builder,
197197 builder .setUnicodeLocaleKeyword (unicodeKey , s );
198198 }
199199
200- /** @return the language */
200+ /**
201+ * @return the language
202+ */
201203 @ JsxGetter
202204 public Object getLanguage () {
203205 return language_ != null ? language_ : JavaScriptEngine .UNDEFINED ;
204206 }
205207
206- /** @return the script */
208+ /**
209+ * @return the script
210+ */
207211 @ JsxGetter
208212 public Object getScript () {
209213 return script_ != null ? script_ : JavaScriptEngine .UNDEFINED ;
210214 }
211215
212- /** @return the region */
216+ /**
217+ * @return the region
218+ */
213219 @ JsxGetter
214220 public Object getRegion () {
215221 return region_ != null ? region_ : JavaScriptEngine .UNDEFINED ;
216222 }
217223
218- /** @return the calendar type */
224+ /**
225+ * @return the calendar type
226+ */
219227 @ JsxGetter
220228 public Object getCalendar () {
221229 return calendar_ != null ? calendar_ : JavaScriptEngine .UNDEFINED ;
222230 }
223231
224- /** @return the collation type */
232+ /**
233+ * @return the collation type
234+ */
225235 @ JsxGetter
226236 public Object getCollation () {
227237 return collation_ != null ? collation_ : JavaScriptEngine .UNDEFINED ;
228238 }
229239
230- /** @return the numbering system */
240+ /**
241+ * @return the numbering system
242+ */
231243 @ JsxGetter
232244 public Object getNumberingSystem () {
233245 return numberingSystem_ != null ? numberingSystem_ : JavaScriptEngine .UNDEFINED ;
234246 }
235247
236- /** @return the case first setting */
248+ /**
249+ * @return the case first setting
250+ */
237251 @ JsxGetter
238252 public Object getCaseFirst () {
239253 return caseFirst_ != null ? caseFirst_ : JavaScriptEngine .UNDEFINED ;
240254 }
241255
242- /** @return the hour cycle */
256+ /**
257+ * @return the hour cycle
258+ */
243259 @ JsxGetter
244260 public Object getHourCycle () {
245261 return hourCycle_ != null ? hourCycle_ : JavaScriptEngine .UNDEFINED ;
246262 }
247263
248- /** @return whether numeric sorting is used */
264+ /**
265+ * @return whether numeric sorting is used
266+ */
249267 @ JsxGetter
250268 public boolean isNumeric () {
251269 return numeric_ ;
252270 }
253271
254- /** @return the base name (without Unicode extensions) */
272+ /**
273+ * @return the base name (without Unicode extensions)
274+ */
255275 @ JsxGetter
256276 public Object getBaseName () {
257277 final String variant = locale_ .getVariant ().replace ("_" , "-" );
0 commit comments