| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| DatePattern |
|
| 0.0;0 |
| 1 | package org.trails.util; |
|
| 2 | ||
| 3 | import java.text.SimpleDateFormat; |
|
| 4 | ||
| 5 | /** |
|
| 6 | * Quick Temporary Initial Draft for centralized automated retrieval of Date |
|
| 7 | * Pattern |
|
| 8 | * |
|
| 9 | * @author kenneth.colassi |
|
| 10 | */ |
|
| 11 | 0 | public class DatePattern |
| 12 | { |
|
| 13 | 0 | public static SimpleDateFormat sdf = new SimpleDateFormat("MM-dd-yyyy"); |
| 14 | ||
| 15 | public static final String MM_DD_yyyy = "MM-DD-yyyy"; |
|
| 16 | } |