Here you can find the source of getMinutes(Calendar cal)
public static int getMinutes(Calendar cal)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int getMinutes(Calendar cal) { return cal.get(Calendar.MINUTE); }/*ww w. j ava 2s.com*/ }