()
| 1219 | |
| 1220 | |
| 1221 | static public String[] getMonoFontFamilies() { |
| 1222 | StringList families = new StringList(); |
| 1223 | for (Font font : getMonoFontList()) { |
| 1224 | families.appendUnique(font.getFamily()); |
| 1225 | } |
| 1226 | families.sort(); |
| 1227 | return families.toArray(); |
| 1228 | } |
| 1229 | |
| 1230 | |
| 1231 | static Font monoFont; |
no test coverage detected