Puts all the attributes of the attribute list that begins with this attribute, in the given byte vector. This includes the 6 header bytes (attribute_name_index and attribute_length) per attribute. @param symbolTable where the constants used in the attributes must be stored. @param output where the
(final SymbolTable symbolTable, final ByteVector output)
| 235 | * @param output where the attributes must be written. |
| 236 | */ |
| 237 | final void putAttributes(final SymbolTable symbolTable, final ByteVector output) { |
| 238 | final byte[] code = null; |
| 239 | final int codeLength = 0; |
| 240 | final int maxStack = -1; |
| 241 | final int maxLocals = -1; |
| 242 | putAttributes(symbolTable, code, codeLength, maxStack, maxLocals, output); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Puts all the attributes of the attribute list that begins with this attribute, in the given |
no test coverage detected