Here you can find the source of getMomentFormatter()
public static SimpleDateFormat getMomentFormatter()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; public class Main { private static SimpleDateFormat m_momentFormat = new SimpleDateFormat("dd-MM-yyyy hh:MM:ss"); public static SimpleDateFormat getMomentFormatter() { return m_momentFormat; }//from www . j a v a 2 s . c om }