Here you can find the source of getCalendar()
private static Calendar getCalendar()
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int FIRST_DAY_OF_WEEK = Calendar.MONDAY; private static Calendar getCalendar() { Calendar c = Calendar.getInstance(); c.setFirstDayOfWeek(FIRST_DAY_OF_WEEK); return c; }//from w w w . j av a 2s . com }