Sets the content to be a char[] @param c the chars @param off the start offset of the chars @param len the length of the chars
(char[] c, int off, int len)
| 158 | * @param len the length of the chars |
| 159 | */ |
| 160 | public void setChars(char[] c, int off, int len) { |
| 161 | charC.setChars(c, off, len); |
| 162 | type = T_CHARS; |
| 163 | hasHashCode = false; |
| 164 | hasLongValue = false; |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Set the content to be a string |
no outgoing calls