Example usage for javax.swing UIManager getUI

List of usage examples for javax.swing UIManager getUI

Introduction

In this page you can find the example usage for javax.swing UIManager getUI.

Prototype

public static ComponentUI getUI(JComponent target) 

Source Link

Document

Returns the appropriate ComponentUI implementation for target .

Usage

From source file:Sketch.java

public void updateUI() {
    setUI((JogShuttleUI) UIManager.getUI(this));
    invalidate();
}