// Bug 2942351 (Program doesn't launch)
// looking at the source for StdXMLBuilder, it appears that parser.parse() could possibly return
// null. So check for null here and skip if necessary.
if (element != null)
{
Iterator it = new EnumerationIterator(element.enumerateChildren());
while (it.hasNext())
{
final IXMLElement elem = (IXMLElement) it.next();
if (isBeanElement(elem))
{
_beanColl.add(loadBean(elem));
}
}