Returns the byte array form of the content of this attribute. The 6 header bytes (attribute_name_index and attribute_length) must not be added in the returned ByteVector. @param classWriter the class to which this attribute must be added. This parameter can be used to add the items that
(
final ClassWriter classWriter,
final byte[] code,
final int codeLength,
final int maxStack,
final int maxLocals)
| 151 | * @return the byte array form of this attribute. |
| 152 | */ |
| 153 | protected ByteVector write( |
| 154 | final ClassWriter classWriter, |
| 155 | final byte[] code, |
| 156 | final int codeLength, |
| 157 | final int maxStack, |
| 158 | final int maxLocals) { |
| 159 | return new ByteVector(content); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Returns the number of attributes of the attribute list that begins with this attribute. |
no outgoing calls
no test coverage detected