Ejemplo n.º 1
0
        public void beginElement(String elementType)
        {
            if (m_activeElement != null)
            {
                throw new Exception("Error. New Element created before old one was finished.");
            }

            m_activeElementType = m_registeredTypes[elementType];
            m_activeSequence = m_registeredSequences[m_activeElementType];
            m_activeSequence.reset();
        }