/** * Set the Font style of the current font * * @param i Font style. */ public void setFontStyle(int i) { fontstyle = i; rebuildFont(); }
/** * Set the Font size of the current font * * @param i Font size. */ public void setFontSize(int i) { fontsize = i; rebuildFont(); }
/** * Set the Logical font name of the current font * * @param s Logical font name. */ public void setFontName(String s) { fontname = s; rebuildFont(); }