001/*
002 * #%L
003 * GwtMaterial
004 * %%
005 * Copyright (C) 2015 - 2017 GwtMaterialDesign
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 * 
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 * 
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package gwt.material.design.client.base;
021
022/**
023 * @author kevzlou7979
024 */
025public interface HasBorder {
026
027    /**
028     * Set the border style of material widget
029     * @param value contains the Css border style, width color of an element. (e.i 1px solid black)
030     */
031    void setBorder(String value);
032
033    String getBorder();
034
035    /**
036     * Sets the border style of material widget
037     * @param value contains the Css border style, width color of an element. (e.i 1px solid black)
038     */
039    void setBorderLeft(String value);
040
041    String getBorderLeft();
042
043    /**
044     * Sets the border right style of material widget
045     * @param value contains the Css border style, width color of an element. (e.i 1px solid black)
046     */
047    void setBorderRight(String value);
048
049    String getBorderRight();
050
051    /**
052     * Sets the border left style of material widget
053     * @param value contains the Css border style, width color of an element. (e.i 1px solid black)
054     */
055    void setBorderTop(String value);
056
057    String getBorderTop();
058
059    /**
060     * Sets the border bottom style of material widget
061     * @param value contains the border style, width color of an element. (e.i 1px solid black)
062     */
063    void setBorderBottom(String value);
064
065    String getBorderBottom();
066
067    void setBorderRadius(String value);
068
069    String getBorderRadius();
070}