(int c)
| 583 | */ |
| 584 | |
| 585 | private final void push(int c) { |
| 586 | |
| 587 | isWhitespace &= c <= ' '; |
| 588 | |
| 589 | if (txtPos == txtBuf.length) { |
| 590 | char[] bigger = new char[txtPos * 4 / 3 + 4]; |
| 591 | System.arraycopy(txtBuf, 0, bigger, 0, txtPos); |
| 592 | txtBuf = bigger; |
| 593 | } |
| 594 | |
| 595 | txtBuf[txtPos++] = (char) c; |
| 596 | } |
| 597 | |
| 598 | /** Sets name and attributes */ |
| 599 |
no outgoing calls
no test coverage detected