Here you can find the source of convertHoursToMinutes(final int hours)
public static int convertHoursToMinutes(final int hours)
//package com.java2s; /*//from www . j a v a 2 s . c o m * Copyright (c) 2000-2002 INSciTE. All rights reserved * INSciTE is on the web at: http://www.hightechkids.org * This code is released under GPL; see LICENSE.txt for details. */ public class Main { public static final int MINUTES_PER_HOUR = 60; /** * Convert hours to minutes. */ public static int convertHoursToMinutes(final int hours) { return hours * MINUTES_PER_HOUR; } }