![JAR search and dependency download from the Maven repository](/logo.png)
freeseawind.lf.basic.splitpane.LuckSplitPaneUI 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
The newest version!
package freeseawind.lf.basic.splitpane;
import javax.swing.JComponent;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicSplitPaneDivider;
import javax.swing.plaf.basic.BasicSplitPaneUI;
/**
* SplitPaneUI实现类
*
* A SplitPaneUI implement class.
*
* @author freeseawind@github
* @version 1.0
*/
public class LuckSplitPaneUI extends BasicSplitPaneUI
{
public static ComponentUI createUI(JComponent x)
{
return new LuckSplitPaneUI();
}
public BasicSplitPaneDivider createDefaultDivider()
{
return super.createDefaultDivider();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy