Here you can find the source of getCalendarInstance()
private static Calendar getCalendarInstance()
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); import java.util.Calendar; public class Main { /**// ww w . j av a 2 s . c om * Locale? * * @return Eine neue Instanz. */ private static Calendar getCalendarInstance() { final Calendar cal = Calendar.getInstance(); return cal; } }