Java Calendar Create getCalendar()

Here you can find the source of getCalendar()

Description

Returns a Calendar instance.

License

Open Source License

Return

a Calendar instance

Declaration

public static Calendar getCalendar() 

Method Source Code

//package com.java2s;
/*/*  www.  ja v a 2 s  . c o m*/
 * aTunes 1.14.0
 * Copyright (C) 2006-2009 Alex Aranda, Sylvain Gaudard, Thomas Beckers and contributors
 *
 * See http://www.atunes.org/wiki/index.php?title=Contributing for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import java.util.Calendar;

import java.util.Locale;

public class Main {
    /** The locale. */
    private static Locale locale = Locale.getDefault();

    /**
     * Returns a Calendar instance.
     * 
     * @return a Calendar instance
     */
    public static Calendar getCalendar() {
        return Calendar.getInstance(locale);
    }
}

Related

  1. getCalendar()
  2. getCalendar()
  3. getCalendar()
  4. getCalendar()
  5. getCalendar()
  6. getCalendar()
  7. getCalendar()
  8. getCalendar()
  9. getCalendar()