Here you can find the source of formatSlashedMmDdYy()
public static DateFormat formatSlashedMmDdYy()
//package com.java2s; //License from project: LGPL import java.text.DateFormat; import java.text.SimpleDateFormat; public class Main { /** DateFormat for "MM/dd/yy". */ public static DateFormat formatSlashedMmDdYy() { return new SimpleDateFormat("MM/dd/yy"); }//w w w.j a v a2 s.c o m }