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

net.sf.mmm.util.nls.impl.formatter.NlsFormatterTimeShort 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 javax.inject.Named;
import javax.inject.Singleton;

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

/**
 * The {@link NlsFormatterTime} for {@link net.sf.mmm.util.nls.api.NlsFormatterManager#STYLE_SHORT short}
 * {@link #getStyle() style}.
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 2.0.0
 */
@Singleton
@Named
public class NlsFormatterTimeShort extends NlsFormatterTime {

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

    super();
  }

  @Override
  public String getStyle() {

    return NlsFormatterManager.STYLE_SHORT;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy