1 2 3 4 5 6 7 8 9 10
public class {{ class_name }} implements AutoCloseable { private final MemorySegment handle; {{ class_name }}(MemorySegment handle) { this.handle = handle; } MemorySegment handle() { return this.handle; }