public static Node insertOldValueNode(TreeComponent tree, Node node) {
if (!isLdapAttribute(tree, node)) {
return null;
}
CROM dn = new CROM(node.m_CROM, false, LdapStringConstants.old_value_string, 1, node.m_CROM.m_CromType);
dn.addType(CROM.CROM_t_Attribute | CROM.CROM_t_Optional);
dn.setValueType("String");
return new Node(tree, node, dn);
}
public static void setLdapAttributeType(TreeComponent tree, Node node, String cmd){