Example usage for com.jgoodies.looks.plastic PlasticComboBoxUI createUI

List of usage examples for com.jgoodies.looks.plastic PlasticComboBoxUI createUI

Introduction

In this page you can find the example usage for com.jgoodies.looks.plastic PlasticComboBoxUI createUI.

Prototype

public static ComponentUI createUI(JComponent b) 

Source Link

Usage

From source file:org.tentackle.plaf.tlooks.TLooksComboBoxUI.java

License:Open Source License

public static ComponentUI createUI(JComponent c) {
    PlasticComboBoxUI.createUI(c);
    return new TLooksComboBoxUI(); // one per component
}