Home
last modified time | relevance | path

Searched refs:dfmt (Results 1 – 5 of 5) sorted by relevance

/aoo42x/main/qadevOOo/runner/stats/
H A DSimpleLogWriter.java41 DecimalFormat dfmt = new DecimalFormat("00"); in SimpleLogWriter() local
43 dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." + in SimpleLogWriter()
44 dfmt.format(cal.get(Calendar.MONTH)) + "." + in SimpleLogWriter()
45 dfmt.format(cal.get(Calendar.YEAR)) + " - " + in SimpleLogWriter()
46 dfmt.format(cal.get(Calendar.HOUR_OF_DAY)) + ":" + in SimpleLogWriter()
47 dfmt.format(cal.get(Calendar.MINUTE)) + ":" + in SimpleLogWriter()
48 dfmt.format(cal.get(Calendar.SECOND))); in SimpleLogWriter()
H A DFileLogWriter.java48 DecimalFormat dfmt = new DecimalFormat("00"); in FileLogWriter() local
50 dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." + in FileLogWriter()
51 dfmt.format(cal.get(Calendar.MONTH)) + "." + in FileLogWriter()
52 dfmt.format(cal.get(Calendar.YEAR)) + " - " + in FileLogWriter()
53 dfmt.format(cal.get(Calendar.HOUR_OF_DAY)) + ":" + in FileLogWriter()
54 dfmt.format(cal.get(Calendar.MINUTE)) + ":" + in FileLogWriter()
55 dfmt.format(cal.get(Calendar.SECOND))); in FileLogWriter()
H A DFatDataBaseOutProducer.java55 DecimalFormat dfmt = new DecimalFormat("00"); in FatDataBaseOutProducer() local
58 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in FatDataBaseOutProducer()
59 String day = dfmt.format(cal.get(GregorianCalendar.DATE)); in FatDataBaseOutProducer()
H A DComplexDataBaseOutProducer.java74 DecimalFormat dfmt = new DecimalFormat("00"); in ComplexDataBaseOutProducer() local
77 String month = dfmt.format(cal.get(GregorianCalendar.MONTH) + 1); in ComplexDataBaseOutProducer()
78 String day = dfmt.format(cal.get(GregorianCalendar.DATE)); in ComplexDataBaseOutProducer()
/aoo42x/main/qadevOOo/runner/util/
H A Dutils.java1006 DecimalFormat dfmt = new DecimalFormat("00"); in getDateTime() local
1007 String dateTime = dfmt.format(cal.get(Calendar.DAY_OF_MONTH)) + "." + in getDateTime()
1008 dfmt.format(cal.get(Calendar.MONTH) + 1) + "." + in getDateTime()
1009 dfmt.format(cal.get(Calendar.YEAR)) + " - " + in getDateTime()
1010 dfmt.format(cal.get(Calendar.HOUR_OF_DAY)) + ":" + in getDateTime()
1011 dfmt.format(cal.get(Calendar.MINUTE)) + ":" + in getDateTime()
1012 dfmt.format(cal.get(Calendar.SECOND)) + "," + in getDateTime()
1013 dfmt.format(cal.get(Calendar.MILLISECOND)); in getDateTime()

Completed in 25 milliseconds