1 22 23 package salsa.util; 24 25 import java.awt.*; 26 27 public class FontUtils 28 { 29 public final static String MONOSPACED = "monospaced"; 30 public final static String SANSSERIF = "sansserif"; 31 public final static String SERIF = "serif"; 32 33 public static Font getMonospacedFont( int size ) 34 { 35 return new Font( MONOSPACED, Font.PLAIN, size ); 36 } 37 38 public static Font getSansSerifFont( int size ) 39 { 40 return new Font( SANSSERIF, Font.PLAIN, size ); 41 } 42 43 public static Font getSerifFont( int size ) 44 { 45 return new Font( SERIF, Font.PLAIN, size ); 46 } 47 } 48 | Popular Tags |