001package com.github.gwtbootstrap.timepicker.client.ui.base;
002
003/**
004 * Define a element that will have the showInputs property
005 *
006 * @author Carlos Alexandro Becker
007 * @author Joshua Godi
008 * @since 2.3.2.0
009 */
010public interface HasShowInputs {
011
012    /**
013     * Sets the showInputs property component
014     *
015     * @param showInputs: if true shows the inputs on the component
016     */
017    public void setShowInputs(boolean showInputs);
018
019}