Here you can find the source of getTimeFormatter()
public static SimpleDateFormat getTimeFormatter()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; public class Main { public static final String TIME_FORMAT = "HH:mm:ss"; public static SimpleDateFormat getTimeFormatter() { return new SimpleDateFormat(TIME_FORMAT); // m_timeFormatter; }/*from ww w .ja v a 2 s.c o m*/ }