Ejemplo n.º 1
0
        public override void VisitClassLayoutTable(ClassLayoutTable table)
        {
            int number = m_rows [ClassLayoutTable.RId];

            table.Rows = new RowCollection(number);
            for (int i = 0; i < number; i++)
            {
                table.Rows.Add(new ClassLayoutRow());
            }
        }
Ejemplo n.º 2
0
        public ClassLayoutTable GetClassLayoutTable()
        {
            ClassLayoutTable table = m_heap [ClassLayoutTable.RId] as ClassLayoutTable;

            if (table != null)
            {
                return(table);
            }

            table = new ClassLayoutTable();
            InitializeTable(table);
            return(table);
        }