Here you can find the source of getCurrentTimeCalendar()
public static Calendar getCurrentTimeCalendar()
//package com.java2s; import java.util.Calendar; public class Main { public static Calendar getCurrentTimeCalendar() { Calendar calendar = Calendar.getInstance(); return calendar; }/*from w w w . j a va 2 s.c o m*/ }