* {@link Element#getChildNodes()} and put them on hte collection.
*/
XMLDCCollection(final DataControl dc, final AccessorDefinition accessorDef, final Element parentElement) {
this.dc = dc;
this.accessorDef = accessorDef;
this.handlers = new HandlerRegistry((StructureDef)accessorDef.getStructure());
this.parentElement = parentElement;
this.childElemNamespace = (String) accessorDef.getProperty(DataControlDefinition.ACCPROP_NAMESPACE);
this.childElemName = (String) accessorDef.getProperty(DataControlDefinition.ACCPROP_NAME);
List<Element> children = Utils.findChildElements(parentElement, childElemNamespace, childElemName);