MCPcopy Index your code
hub / github.com/processing/processing / getMonoFontFamilies

Method getMonoFontFamilies

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

Source from the content-addressed store, hash-verified

985
986
987 static public String[] getMonoFontFamilies() {
988 StringList families = new StringList();
989 for (Font font : getMonoFontList()) {
990 families.appendUnique(font.getFamily());
991 }
992 families.sort();
993 return families.array();
994 }
995
996
997 static Font monoFont;

Callers 1

initFontListMethod · 0.95

Calls 5

getMonoFontListMethod · 0.95
appendUniqueMethod · 0.95
sortMethod · 0.95
arrayMethod · 0.95
getFamilyMethod · 0.80

Tested by

no test coverage detected