mockit.external.asm.AttributeWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external
APIs; JUnit (4 & 5) and TestNG test runners are supported.
It also contains an advanced code coverage tool.
package mockit.external.asm;
import javax.annotation.*;
abstract class AttributeWriter
{
@Nonnull final ConstantPoolGeneration cp;
/**
* The index of the constant pool item that contains the name of the associated attribute.
*/
@Nonnegative private int attributeIndex;
AttributeWriter(@Nonnull ConstantPoolGeneration cp) { this.cp = cp; }
AttributeWriter(@Nonnull ConstantPoolGeneration cp, @Nonnull String attributeName) {
this.cp = cp;
setAttribute(attributeName);
}
final void setAttribute(@Nonnull String attributeName) {
attributeIndex = cp.newUTF8(attributeName);
}
@Nonnegative
int getAttributeCount() { return attributeIndex == 0 ? 0 : 1; }
@Nonnegative
abstract int getSize();
void put(@Nonnull ByteVector out) {
put(out, 2);
}
final void put(@Nonnull ByteVector out, @Nonnegative int size) {
out.putShort(attributeIndex).putInt(size);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy