Java Utililty Methods Folder Size Get

List of utility methods to do Folder Size Get

Description

The list of methods to do Folder Size Get are organized into topic(s).

Method

voidsetFontSize(int size, Graphics g)
set Font Size
Font curFont = g.getFont();
Font fontToSet = new Font(curFont.getName(), curFont.getStyle(), size);
if (fontToSet != null) {
    curFont = fontToSet;
    g.setFont(curFont);
voidsetMonospacedFont(int size, Component... components)
Set the font of the given components to the logical "Monospaced" font of the given size.
setFont(new Font("Monospaced", Font.PLAIN, size), components);