001
014
015 package com.liferay.portal.kernel.util;
016
017 import java.text.DateFormat;
018
019 import java.util.Locale;
020 import java.util.TimeZone;
021
022
027 @Deprecated
028 public class DateFormats {
029
030 public static DateFormat getDate(Locale locale) {
031 return DateFormatFactoryUtil.getDate(locale);
032 }
033
034 public static DateFormat getDate(Locale locale, TimeZone timeZone) {
035 return DateFormatFactoryUtil.getDate(locale, timeZone);
036 }
037
038 public static DateFormat getDateTime(Locale locale) {
039 return DateFormatFactoryUtil.getDateTime(locale);
040 }
041
042 public static DateFormat getDateTime(Locale locale, TimeZone timeZone) {
043 return DateFormatFactoryUtil.getDateTime(locale, timeZone);
044 }
045
046 public static DateFormat getTime(Locale locale) {
047 return DateFormatFactoryUtil.getTime(locale);
048 }
049
050 public static DateFormat getTime(Locale locale, TimeZone timeZone) {
051 return DateFormatFactoryUtil.getTime(locale, timeZone);
052 }
053
054 }