// super.applyChildElementCustomization();
// Get customization data
if (_creationData.getDropCustomizationData() != null)
{
final ICustomizationData data = (ICustomizationData) _creationData.getDropCustomizationData().getAdapter(ICustomizationData.class);
//
// if (data.getTextNodeData() != null) {
// final Node textNode = _element.getOwnerDocument().createTextNode(data.getTextNodeData());
// _element.appendChild(textNode);
// }
// else
if (data.getChildrenData() != null)
{
int childCount = 0;
CHILDREN_LOOP: for (ICustomizationData child : data.getChildrenData().getChildList())
{
assert (_element.getOwnerDocument() != null);
// Setup child node
Element childNode = _element.getOwnerDocument().createElement(child.getTagIdentifier().getTagName());