All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.mmm.util.nls.impl.formatter.NlsFormatterTime Maven / Gradle / Ivy

/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package net.sf.mmm.util.nls.impl.formatter;

import net.sf.mmm.util.nls.api.NlsFormatterManager;

/**
 * This is an implementation of {@link net.sf.mmm.util.nls.api.NlsFormatter} using
 * {@link java.text.DateFormat#getTimeInstance(int, java.util.Locale)}.
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */
public abstract class NlsFormatterTime extends AbstractSimpleNlsFormatterDate {

  /**
   * The constructor.
   */
  public NlsFormatterTime() {

    super();
  }

  @Override
  public String getType() {

    return NlsFormatterManager.TYPE_TIME;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy