getFontName method
Implementation
String getFontName() {
switch (name) {
case 'courier':
return 'Courier';
case 'helvetica':
return 'Helvetica';
case 'timesRoman':
return 'Times-Roman';
default:
return 'Courier';
}
}