String str = aifComponent.getUid();
removeSectionComponents(new String[] { str });
} else {
if (!(componentEvent instanceof AIFComponentChangeEvent))
continue;
AIFComponentChangeEvent aifComponentChangeEvent = (AIFComponentChangeEvent) componentEvent;
List<ISectionComponent> containedSections = getContainedSections(aifComponentChangeEvent.getComponent());
if (containedSections == null)
continue;
Iterator<ISectionComponent> containedSectionsIterator = containedSections.iterator();
while (containedSectionsIterator.hasNext()) {
ISectionComponent sectionComponent = (ISectionComponent) containedSectionsIterator.next();
sectionComponent.setTitle(aifComponentChangeEvent.getComponent().toString());
}
}
}
}