Inserts some bytes in the input stream. @param value values to insert @param spaces add spaces @return true if everything went alright @throws IOException I/O exception
(final byte[] value, final boolean spaces)
| 82 | * @throws IOException I/O exception |
| 83 | */ |
| 84 | public boolean add(final byte[] value, final boolean spaces) throws IOException { |
| 85 | if(spaces) add(new NewlineInput(new IOContent(Token.cpToken(' ')))); |
| 86 | add(new NewlineInput(new IOContent(value))); |
| 87 | if(spaces) add(new NewlineInput(new IOContent(Token.cpToken(' ')))); |
| 88 | return ++exp < (inputs[0].size() + 1) * 10 && ip < 32; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Inserts a cached input buffer. |
nothing calls this directly
no test coverage detected