About Font

protected void configureAbout(About pAbout)
{
pAbout.setText("Version " + VERSION);
}
How can I change Font?
{
pAbout.setText("Version " + VERSION);
}
How can I change Font?
public void doAbout(UIActionEvent pEvent) throws Throwable;
public void doAbout(UIActionEvent pEvent) throws Throwable
{
About about = new About(getDesktopPane());
configureFrame(about);
configureAbout(about);
about.pack();
about.setLocationRelativeTo(getContentPane());
about.setVisible(true);
}