+
+ /* creation of processes list */
+ xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, priv->xroot, (const xmlChar *)"child::bpmn:process");
+ if (xnodeset != NULL
+ && xnodeset->nodeNr > 0)
+ {
+ for (i = 0; i < xnodeset->nodeNr; i++)
+ {
+ /* for each process */
+ ht_nodes = g_hash_table_new (g_str_hash, g_str_equal);
+ g_hash_table_insert (priv->ht_processes, g_strdup ((gchar *)xmlGetProp (xnodeset->nodeTab[i], (const xmlChar *)"id")), (gpointer)g_hash_table_ref (ht_nodes));
+
+ /* creation of an hash table with all nodes */
+ cur = xnodeset->nodeTab[i]->children;
+ while (cur != NULL)
+ {
+ prop = xmlGetProp (cur, (const xmlChar *)"id");
+ if (prop != NULL)
+ {
+ g_hash_table_insert (ht_nodes, (gpointer)g_strdup ((gchar *)prop), (gpointer)cur);
+ xmlFree (prop);
+ }
+
+ cur = cur->next;
+ }
+ }
+ }
+