MCPcopy Index your code
hub / github.com/benfry/processing4 / getMonoFontFamilies

Method getMonoFontFamilies

app/src/processing/app/ui/Toolkit.java:1221–1228  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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;

Callers 1

initFontListMethod · 0.95

Calls 5

getMonoFontListMethod · 0.95
appendUniqueMethod · 0.95
sortMethod · 0.95
toArrayMethod · 0.95
getFamilyMethod · 0.80

Tested by

no test coverage detected