001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
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    /**
023     * @author     Brian Wing Shun Chan
024     * @deprecated As of 6.2.0, replaced by {@link DateFormatFactoryUtil} or {@link
025     *             FastDateFormatFactoryUtil}
026     */
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    }