(String s)
| 165 | private int classHandle; |
| 166 | |
| 167 | private void string(String s) throws IOException { |
| 168 | int length = s.length(); |
| 169 | rawShort(length); |
| 170 | for (byte b : s.getBytes()) { |
| 171 | rawByte(b); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | private static char primitiveTypeChar(Class type) { |
| 176 | if (type == Byte.TYPE) { |