Example usage for java.awt Window setFont

List of usage examples for java.awt Window setFont

Introduction

In this page you can find the example usage for java.awt Window setFont.

Prototype

public void setFont(Font f) 

Source Link

Document

Sets the font of this container.

Usage

From source file:Filter3dTest.java

/**
 * Sets full screen mode and initiates and objects.
 *//*from www.j  ava  2s .c o m*/
public void init() {
    screen = new ScreenManager();
    DisplayMode displayMode = screen.findFirstCompatibleMode(POSSIBLE_MODES);
    screen.setFullScreen(displayMode);

    Window window = screen.getFullScreenWindow();
    window.setFont(new Font("Dialog", Font.PLAIN, FONT_SIZE));
    window.setBackground(Color.blue);
    window.setForeground(Color.white);

    isRunning = true;
}