public abstract DateFormat getTimeInstance (int style, Locale locale)

Returns a new DateFormat instance which formats time with the given formatting style for the specified locale.

Parameters:
style    the given formatting style. Either one of DateFormat.SHORT, DateFormat.MEDIUM, DateFormat.LONG, or DateFormat.FULL.
locale    the desired locale.

Returns:  a time formatter.

Exceptions:
IllegalArgumentException    if style is invalid, or if locale isn't one of the locales returned from java.util.spi.LocaleServiceProvider.getAvailableLocales().
NullPointerException    if locale is null

See also:
java.text.DateFormat.getTimeInstance(int, java.util.Locale)