if (nd.getNodeType() == Node.ELEMENT_NODE) {
String nodeName = Val.chkStr(nd.getNodeName());
if (nodeName.equalsIgnoreCase("indexables")) {
Indexables idxables = new Indexables();
idxables.configure(context,nd,nd.getAttributes());
if (idxables.hasPropertiesOrSiblings()) {
if (this.getIndexables() == null) {
this.setIndexables(idxables);
} else {
this.getIndexables().addSibling(idxables);