Here we read the element's name ...this is an end tag Stays here while reads a char
(char currChar)
| 413 | * Stays here while reads a char |
| 414 | */ |
| 415 | private void doState12(char currChar) { |
| 416 | if ('>' == currChar){ |
| 417 | elemNameEnd = m_cursor - 1; |
| 418 | elemName = m_modifier.substring(elemNameStart,elemNameEnd); |
| 419 | performActionWithEndElem(elemName); |
| 420 | m_currState = 1; |
| 421 | } |
| 422 | if (isWhiteSpace(currChar)){ |
| 423 | m_currState = 13; |
| 424 | elemNameEnd = m_cursor - 1; |
| 425 | } |
| 426 | }//doState12 |
| 427 | |
| 428 | /** |
| 429 | * If '>' -> state 1 |
no test coverage detected