Skip to content

Instantly share code, notes, and snippets.

@fdaoud
Created April 30, 2012 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdaoud/2560075 to your computer and use it in GitHub Desktop.
Save fdaoud/2560075 to your computer and use it in GitHub Desktop.
TimeTypeConverter
public class TimeTypeConverter extends DateTypeConverter {
private static final String[] TIME_FORMAT = { "HH:mm" };
@Override
protected String[] getFormatStrings() {
return TIME_FORMAT;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment