Here you can find the source of friendlyTimestampFormat()
public static SimpleDateFormat friendlyTimestampFormat()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { private static final String formatFriendlyTimestamp = "dd.MM.yyyy HH:mm:ss"; public static SimpleDateFormat friendlyTimestampFormat() { return new SimpleDateFormat(formatFriendlyTimestamp); }//from ww w .ja v a2 s .co m }