Sets the buffer to the specified sub array of characters. @param c the characters @param off the start offset of the characters @param len the length of the characters
(char[] c, int off, int len)
| 130 | * @param len the length of the characters |
| 131 | */ |
| 132 | public void setChars(char[] c, int off, int len) { |
| 133 | buff = c; |
| 134 | start = off; |
| 135 | end = start + len; |
| 136 | isSet = true; |
| 137 | hasHashCode = false; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | /** |
no outgoing calls