Example usage for com.jgoodies.looks.windows WindowsLookAndFeel getFontPolicy

List of usage examples for com.jgoodies.looks.windows WindowsLookAndFeel getFontPolicy

Introduction

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

Prototype

public static FontPolicy getFontPolicy() 

Source Link

Document

Looks up and retrieves the FontPolicy used by the JGoodies Windows Look&Feel.

Usage

From source file:FontTest.java

License:Open Source License

private FontSet getWindowsFontSet() {
    try {//w w  w .  j av a2  s.  co m
        UIManager.setLookAndFeel(new WindowsLookAndFeel());
        return WindowsLookAndFeel.getFontPolicy().getFontSet("Windows", UIManager.getDefaults());
    } catch (UnsupportedLookAndFeelException e) {
        return null;
    }
}