WrappedCompositeByteBufTest Class — netty Architecture
Architecture documentation for the WrappedCompositeByteBufTest class in WrappedCompositeByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f9123269_e842_fdc5_b124_0935892c6f16["WrappedCompositeByteBufTest"] 316cd066_db3b_ba8b_160d_24d2c6647b43["WrappedCompositeByteBufTest.java"] f9123269_e842_fdc5_b124_0935892c6f16 -->|defined in| 316cd066_db3b_ba8b_160d_24d2c6647b43 3ce9c7b7_96c9_89ec_de30_96f1c586dcc4["ByteBuf()"] f9123269_e842_fdc5_b124_0935892c6f16 -->|method| 3ce9c7b7_96c9_89ec_de30_96f1c586dcc4 a479822b_e5e2_6b75_98d0_20b9fe45121e["WrappedCompositeByteBuf()"] f9123269_e842_fdc5_b124_0935892c6f16 -->|method| a479822b_e5e2_6b75_98d0_20b9fe45121e 41d46f25_e44d_c19b_526a_4b9e4fe98f6d["CompositeByteBuf()"] f9123269_e842_fdc5_b124_0935892c6f16 -->|method| 41d46f25_e44d_c19b_526a_4b9e4fe98f6d
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/WrappedCompositeByteBufTest.java lines 18–33
public class WrappedCompositeByteBufTest extends BigEndianCompositeByteBufTest {
@Override
protected final ByteBuf newBuffer(int length, int maxCapacity) {
return wrap((CompositeByteBuf) super.newBuffer(length, maxCapacity));
}
protected WrappedCompositeByteBuf wrap(CompositeByteBuf buffer) {
return new WrappedCompositeByteBuf(buffer);
}
@Override
protected CompositeByteBuf newCompositeBuffer() {
return wrap(super.newCompositeBuffer());
}
}
Source
Frequently Asked Questions
What is the WrappedCompositeByteBufTest class?
WrappedCompositeByteBufTest is a class in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/WrappedCompositeByteBufTest.java.
Where is WrappedCompositeByteBufTest defined?
WrappedCompositeByteBufTest is defined in buffer/src/test/java/io/netty/buffer/WrappedCompositeByteBufTest.java at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free