* @param fontURLList font file list
* @param fontInfoList a configured font info list
*/
public void add(List/*<URL>*/ fontURLList, List/*<EmbedFontInfo>*/ fontInfoList) {
FontCache cache = manager.getFontCache();
FontInfoFinder finder = new FontInfoFinder();
finder.setEventListener(listener);
for (Iterator iter = fontURLList.iterator(); iter.hasNext();) {
URL fontUrl = (URL)iter.next();
EmbedFontInfo[] embedFontInfos = finder.find(fontUrl, resolver, cache);
if (embedFontInfos == null) {
continue;
}
for (int i = 0, c = embedFontInfos.length; i < c; i++) {
EmbedFontInfo fontInfo = embedFontInfos[i];