Don't blindly cast children to FontEntityAtom

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@405381 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2006-05-09 10:47:22 +00:00
parent ca8b649bfe
commit 9c748bf4bd
1 changed files with 10 additions and 6 deletions

View File

@ -38,13 +38,17 @@ public class FontCollection extends RecordContainer {
System.arraycopy(source,start,_header,0,8);
_children = Record.findChildRecords(source,start+8,len-8);
// Save font names into <code>List</code>
fonts = new ArrayList();
for (int i = 0; i < _children.length; i++){
FontEntityAtom atom = (FontEntityAtom)_children[i];
fonts.add(atom.getFontName());
}
// Save font names into <code>List</code>
fonts = new ArrayList();
for (int i = 0; i < _children.length; i++){
if(_children[i] instanceof FontEntityAtom) {
FontEntityAtom atom = (FontEntityAtom)_children[i];
fonts.add(atom.getFontName());
} else {
System.err.println("Warning: FontCollection child wasn't a FontEntityAtom, was " + _children[i]);
}
}
}
/**