![JAR search and dependency download from the Maven repository](/logo.png)
tinylaf-1_4_0_src.src.de.muntjak.tinylookandfeel.TinyTableUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinylaf Show documentation
Show all versions of tinylaf Show documentation
A (mostly painted) Look and Feel for Java 1.4 and higher.
The newest version!
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* This file is part of the Tiny Look and Feel *
* Copyright 2003 - 2008 Hans Bickel *
* *
* For licensing information and credits, please refer to the *
* comment in file de.muntjak.tinylookandfeel.TinyLookAndFeel *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package de.muntjak.tinylookandfeel;
import javax.swing.JComponent;
import javax.swing.JTable;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTableUI;
/**
* TinyTableUI
*
* @version 1.0
* @author Hans Bickel
*/
public class TinyTableUI extends BasicTableUI {
JTable table;
public TinyTableUI() {
super();
}
public TinyTableUI(JComponent table) {
super();
this.table = (JTable)table;
}
public static ComponentUI createUI(JComponent table) {
return new TinyTableUI(table);
}
protected void installDefaults() {
super.installDefaults();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy