Sets the buffer to the specified sub array of bytes. @param b the ascii bytes @param off the start offset of the bytes @param len the length of the bytes
(byte[] b, int off, int len)
| 215 | * @param len the length of the bytes |
| 216 | */ |
| 217 | public void setBytes(byte[] b, int off, int len) { |
| 218 | buff = b; |
| 219 | start = off; |
| 220 | end = start + len; |
| 221 | isSet = true; |
| 222 | hasHashCode = false; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | /** |
no outgoing calls