Example usage for com.jgoodies.looks FontSets getLogicalFontSet

List of usage examples for com.jgoodies.looks FontSets getLogicalFontSet

Introduction

In this page you can find the example usage for com.jgoodies.looks FontSets getLogicalFontSet.

Prototype

public static FontSet getLogicalFontSet() 

Source Link

Document

Lazily creates and returns the FontSet that returns the logical fonts specified by the Java runtime environment.

Usage

From source file:org.drools.examples.broker.ui.ScrollingBanner.java

License:Apache License

public ScrollingBanner() {
    super();/* w  w  w.ja v a2 s . c o m*/
    this.ticks = new ConcurrentLinkedQueue<StockTick>();
    this.setBackground(Color.black);
    this.setForeground(Color.GREEN);
    this.setFont(FontSets.getLogicalFontSet().getTitleFont());
}