001package com.github.gwtbootstrap.timepicker.client.ui.base;
002
003/**
004 * Define a element that will have the secondStep property
005 *
006 * @author Carlos Alexandro Becker
007 * @author Joshua Godi
008 * @since 2.3.2.0
009 */
010public interface HasSecondStep {
011
012    /**
013     * Sets the secondStep property on the component
014     *
015     * @param secondStep: second step of the minute component
016     */
017    public void setSecondStep(int secondStep);
018
019}