Advertisement
Guest User

Untitled

a guest
Jan 15th, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. /**
  2. * Global property name for the display of Date
  3. */
  4. private static final String GLOBAL_POPERTY_DATE = null;
  5.  
  6. /**
  7. * Global property name for the display of Date and Time
  8. */
  9. private static final String GLOBAL_PROPERTY_DATEANDTIME = null;
  10.  
  11. /**
  12. * Global property name for the display of Time
  13. */
  14. private static final String GLOBAL_PROPERTY_TIME = null;
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. props.add(new GlobalProperty(GLOBAL_POPERTY_DATE, null,
  23. "Format in which to display date should be fully-specified(long format)"));
  24.  
  25. props.add(new GlobalProperty(GLOBAL_PROPERTY_DATEANDTIME, null,
  26. "Date and Time should be displayed in a fully specified format"));
  27.  
  28. props.add(new GlobalProperty(GLOBAL_PROPERTY_TIME, null,
  29. "Time to be displayed in specified format"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement