5859606162636465666768
} void reloadFontCache() { List<Font> fonts = loadFontsFromDataDirectory(); final FontCache cache = FontCache.getDefaultInstance(); cache.resetCache(); for (Font font : fonts) { cache.registerFont(font); } }
99100101102103104105106107108109