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