Represents the data of a class used for transforming.
| 8 | * Represents the data of a class used for transforming. |
| 9 | */ |
| 10 | @ApiStatus.Internal |
| 11 | public final class ClassData { |
| 12 | private final byte @NotNull [] classBytes; |
| 13 | private final @NotNull Metadata metadata; |
| 14 | |
| 15 | public ClassData(byte @NotNull [] classBytes, @NotNull Metadata metadata) { |
| 16 | this.classBytes = classBytes; |
| 17 | this.metadata = metadata; |
| 18 | } |
| 19 | |
| 20 | public byte @NotNull [] getClassBytes() { |
| 21 | return classBytes; |
| 22 | } |
| 23 | |
| 24 | public @NotNull Metadata getMetadata() { |
| 25 | return metadata; |
| 26 | } |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected