freeseawind.lf.basic.table.LuckTableUI 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.basic.table;
import javax.swing.JComponent;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTableUI;
/**
* TableUI实现类。
*
* TableUI implement class.
*
* @author freeseawind@github
* @version 1.0
*/
public class LuckTableUI extends BasicTableUI
{
public static ComponentUI createUI(JComponent c)
{
return new LuckTableUI();
}
public void installUI(JComponent c)
{
super.installUI(c);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy