// for (VarattributeBean vaBean : col) {
// vaBean.remove(con);
// }
// The attribute must be in the same order because of the schema
int orderNr = 0;
ContainerattributeBean containerAttrBean = null;
for (Node node : attrList) {
attributeName = node.getName().trim();
attributeValue = node.getText().trim();
containerAttrBean = new ContainerattributeBean();
containerAttrBean.setAutoid(autoId);
containerAttrBean.setId(elementId);
containerAttrBean.setAttributename(attributeName);
containerAttrBean.setOrdernumber(new Integer(orderNr));
containerAttrBean.setAttributevalue(attributeValue);
containerAttrBean.create(con);
orderNr++;
}
}