001package com.github.gwtbootstrap.timepicker.client.ui.base; 002 003/** 004 * Define a element that will have the disableFocus property 005 * 006 * @author Carlos Alexandro Becker 007 * @author Joshua Godi 008 * @since 2.3.2.0 009 */ 010public interface HasDisableFocus { 011 012 /** 013 * Sets the disableFocus property component 014 * 015 * @param disableFocus: if true it will disable the focus of the component 016 * - useful to hide keyboard popup on mobile devices 017 */ 018 public void setDisableFocus(boolean disableFocus); 019 020}