001    /**
002     * Copyright (c) 2000-2013 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    public class DateFormats {
028    
029            public static DateFormat getDate(Locale locale) {
030                    return DateFormatFactoryUtil.getDate(locale);
031            }
032    
033            public static DateFormat getDate(Locale locale, TimeZone timeZone) {
034                    return DateFormatFactoryUtil.getDate(locale, timeZone);
035            }
036    
037            public static DateFormat getDateTime(Locale locale) {
038                    return DateFormatFactoryUtil.getDateTime(locale);
039            }
040    
041            public static DateFormat getDateTime(Locale locale, TimeZone timeZone) {
042                    return DateFormatFactoryUtil.getDateTime(locale, timeZone);
043            }
044    
045            public static DateFormat getTime(Locale locale) {
046                    return DateFormatFactoryUtil.getTime(locale);
047            }
048    
049            public static DateFormat getTime(Locale locale, TimeZone timeZone) {
050                    return DateFormatFactoryUtil.getTime(locale, timeZone);
051            }
052    
053    }