/*********************************************************************/
 /// <summary>
 /// Setzt für einen Vertex das Attribut welches dieser Repräsentiert
 /// </summary>
 /// <param name="vertex">Vertex dessen Attribut geändert werden soll</param>
 /// <param name="attributeType">neues Attribut des Vertex</param>
 public bool setVertexAttribute(CTreeVertex vertex, CAttributeType attributeType)
 {
     if (mTreeLogic.setVertexAttribute(vertex, attributeType) == true)
     {
         mTreeLogic.updateVertexValues();
         return(true);
     }
     return(false);
 }
        internal void createGraph()
        {
            mTreeLogic.resetActiveTree();

            CTreeVertex rootNode = mTreeLogic.getRootNode();

            doTDIDT(rootNode);

            mTreeLogic.updateVertexValues();
        }