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