}
// If there are child views, call update method
if ((this.hasViews()) && ((newDataToPost != null) || (oldDataToPost != null)))
{
EventBean[] nd = (newDataToPost != null) ? newDataToPost.toArray() : null;
EventBean[] od = (oldDataToPost != null) ? oldDataToPost.toArray() : null;
if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().qViewIndicate(this, timeFirstViewFactory.getViewName(), nd, od);}
updateChildren(nd, od);
if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().aViewIndicate();}
}