Advertisement
Guest User

Untitled

a guest
Jan 15th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /**
  2. * Global property for the display of the format of Date
  3. */
  4. private static final String GLOBAL_POPERTY_DATE_DISPLAY_FORMAT = null;
  5.  
  6. /**
  7. * Global property for the display of the format of Date and Time
  8. */
  9. private static final String GLOBAL_PROPERTY_DATEANDTIME_DISPLAY_FORMAT = null;
  10.  
  11. /**
  12. * Global property for the display of format of Time
  13. */
  14. private static final String GLOBAL_PROPERTY_TIME_DISPLAY_FORMAT = null;
  15.  
  16.  
  17.  
  18.  
  19. props.add(new GlobalProperty(GLOBAL_POPERTY_DATE_DISPLAY_FORMAT, null, "Format for displaying Date"));
  20.  
  21. props.add(new GlobalProperty(GLOBAL_PROPERTY_DATEANDTIME_DISPLAY_FORMAT, null, "Format for displaying Date and Time at once"));
  22.  
  23. props.add(new GlobalProperty(GLOBAL_PROPERTY_TIME_DISPLAY_FORMAT, null, "Format for displaying Time"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement