示例#1
0
        /// <summary>
        /// Expands the whole diagram
        /// </summary>
        public void ExpandAll()
        {
            IVisitor expander = new ExpanderVisitor();

            this.graphAbstract.DepthFirstTraversal(expander);
            DrawTree();
        }
示例#2
0
		/// <summary>
		/// Expands the whole diagram
		/// </summary>
		public void ExpandAll()
		{
			IVisitor expander = new ExpanderVisitor();
			this.graphAbstract.DepthFirstTraversal(expander);
			DrawTree();
			
		}