// for (VarscriptBean scriptBean : col) {
// scriptBean.remove(con);
// }
// The attribute must be in the same order because of the schema
int orderNr = 0;
ContainerscriptBean containerScriptBean = null;
for (Node node : scriptList) {
scriptName = node.getName().trim();
scriptValue = node.getText().trim();
containerScriptBean = new ContainerscriptBean();
containerScriptBean.setAutoid(autoId);
containerScriptBean.setId(elementId);
containerScriptBean.setScriptname(scriptName);
containerScriptBean.setOrdernumber(new Integer(orderNr));
containerScriptBean.setScriptvalue(scriptValue);
containerScriptBean.create(con);
orderNr++;
}
}