using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Xml;
using DataHolder.Containers;
namespace GEGeneratorWizzard.Controls{
/// <summary>
/// Summary description for DataNode.
/// </summary>
public class TableNode:TreeNode
{
private WizzardDBTable table;
public TableNode(WizzardDBTable p_table)
{
table = p_table;
SetText();
}
public void SetText()
{
this.Text = table.TableFullName;
}
public WizzardDBTable Table
{
get{return table;}
}
}
}
|