Example usage for com.jgoodies.looks.windows WindowsScrollPaneUI WindowsScrollPaneUI

List of usage examples for com.jgoodies.looks.windows WindowsScrollPaneUI WindowsScrollPaneUI

Introduction

In this page you can find the example usage for com.jgoodies.looks.windows WindowsScrollPaneUI WindowsScrollPaneUI.

Prototype

WindowsScrollPaneUI

Source Link

Usage

From source file:cuGestionarFichaClinica.PanelCirculatorio.java

License:Open Source License

/**
 * This method initializes panelScrollObservacion   
 *    /*from www.  j a  v  a 2 s  . co  m*/
 * @return javax.swing.JScrollPane   
 */
private JScrollPane getPanelScrollObservacion() {
    if (panelScrollObservacion == null) {
        panelScrollObservacion = new JScrollPane();
        panelScrollObservacion.setUI(new WindowsScrollPaneUI());
        panelScrollObservacion.setViewportView(getCampoObservacion());
    }
    return panelScrollObservacion;
}