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