1 23 24 package org.infoglue.deliver.util.graphics; 25 26 import java.awt.Font ; 27 28 32 33 public class FontHelper 34 { 35 public FontHelper() 36 { 37 } 38 39 42 43 public int getPlainStyle() 44 { 45 return Font.PLAIN; 46 } 47 48 51 52 public int getBoldStyle() 53 { 54 return Font.BOLD; 55 } 56 57 60 61 public int getItalicStyle() 62 { 63 return Font.ITALIC; 64 } 65 66 } 67 | Popular Tags |