If any C -> state 4 If '=' state 6 Stays here while reads WS
(char currChar)
| 382 | * Stays here while reads WS |
| 383 | */ |
| 384 | private void doState10(char currChar){ |
| 385 | if ('=' == currChar) |
| 386 | m_currState = 6; |
| 387 | if ( ('=' != currChar) && !isWhiteSpace(currChar)){ |
| 388 | // this mean that the attribute was a value and we have to create |
| 389 | // a default attribute |
| 390 | m_modifier.insert(attrEnd,'"'); |
| 391 | m_modifier.insert(attrStart,"defaultAttr=\""); |
| 392 | |
| 393 | // go to state 4 |
| 394 | m_currState = 4; |
| 395 | |
| 396 | m_cursor = attrStart; |
| 397 | } |
| 398 | }// doState10 |
| 399 | |
| 400 | /** |
| 401 | * We are preparing to read the and definition of an element |
no test coverage detected