001package com.github.gwtbootstrap.timepicker.client.ui.base;
002
003/**
004 * Define a element to have the setter of format (string).
005 *
006 * @author Carlos Alexandro Becker
007 * @author Joshua Godi
008 * @since 2.3.2.0
009 */
010public interface HasTimeFormat {
011    /**
012     * Set the format in the component.
013     * @param format: the time format (HH:mm:ss a, e.g.)
014     */
015    void setFormat(String format);
016}