![JAR search and dependency download from the Maven repository](/logo.png)
freeseawind.lf.border.LuckBorderField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of littleluck Show documentation
Show all versions of littleluck Show documentation
Java Swing cross platform LookAndFeel
package freeseawind.lf.border;
import java.awt.geom.RectangularShape;
/**
* 边框属性接口
*
* @author freeseawind@github
* @version 1.0
*/
public interface LuckBorderField
{
/**
* 设置组件焦点状态
*
* @param isFoucusGaind 有焦点则true,否则false
*/
public void setFocusGained(boolean isFoucusGaind);
/**
* 判断组件是否获取焦点
*
* @return 有焦点则返回true,否则返回false
*/
public boolean isFocusGaind();
/**
* 获取边框形状
*
* @return RectangularShape
*/
public RectangularShape getBorderShape();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy