List of utility methods to do Folder Size Get
void | setFontSize(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); |
void | setMonospacedFont(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); |