Here you can find the source of formatTimeArea(Integer hour)
public static String formatTimeArea(Integer hour)
//package com.java2s; /**//w ww . j a v a 2 s . co m * Copyright (c)2010-2011 Enterprise Website Content Management System(EWCMS), All rights reserved. * EWCMS PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * http://www.ewcms.com */ public class Main { public static String formatTimeArea(Integer hour) { return String.format("%02d", hour); } }