Here you can find the source of getDefaultPropertyPageDateTimeFormat()
public static DateFormat getDefaultPropertyPageDateTimeFormat()
//package com.java2s; // Licensed under the MIT license. See License.txt in the repository root. import java.text.DateFormat; public class Main { /**/*from www . j a v a2s . co m*/ * The default {@link DateFormat} to be used in property pages (used by * implementations of {@link IPropertySource}). */ public static DateFormat getDefaultPropertyPageDateTimeFormat() { return DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG); } }