com.github.bloodshura.ignitium.ntv.struct.MutableStructField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-native Show documentation
Show all versions of ignitium-native Show documentation
An API for working with native system APIs, with a higher-level interface.
The newest version!
package com.github.bloodshura.ignitium.ntv.struct;
import javax.annotation.Nonnull;
public abstract class MutableStructField extends StructField {
public MutableStructField(@Nonnull MappedStruct struct, int offset, int size) {
super(struct, offset, size);
}
public final void setValue(@Nonnull E value) {
write(value);
}
protected abstract void write(@Nonnull E value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy