All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.muntjak.tinylookandfeel.TinyListUI Maven / Gradle / Ivy

Go to download

This is the Tiny look-and-feel packaged to be distributed with the SQuirreLSQL client. The Tiny look-and-feel is 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 java.awt.*;
import javax.swing.*;
import javax.swing.plaf.*;
import javax.swing.plaf.basic.*;

import de.muntjak.tinylookandfeel.controlpanel.*;

/**
 * TinyListUI
 * 
 * @version 1.3
 * @author Hans Bickel
 */
public class TinyListUI extends BasicListUI {
	
	private JComponent list;
	
	public TinyListUI() {
		super();
	}
	
	public TinyListUI(JComponent list) {
		super();
		this.list = list;
	}
	
	public static ComponentUI createUI(JComponent list) {
		return new TinyListUI(list);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy