org.purejava.appindicator._GParamSpecValueArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libappindicator-gtk3-java-full Show documentation
Show all versions of libappindicator-gtk3-java-full Show documentation
Java bindings for libappindicator-gtk3 in 100% pure Java
// Generated by jextract
package org.purejava.appindicator;
import java.lang.foreign.Arena;
import java.lang.foreign.MemoryLayout;
import java.lang.foreign.MemorySegment;
import java.lang.foreign.SegmentAllocator;
import java.lang.invoke.VarHandle;
/**
* {@snippet :
* struct _GParamSpecValueArray {
* struct _GParamSpec parent_instance;
* struct _GParamSpec* element_spec;
* unsigned int fixed_n_elements;
* };
* }
*/
public class _GParamSpecValueArray {
public static MemoryLayout $LAYOUT() {
return constants$664.const$2;
}
public static MemorySegment parent_instance$slice(MemorySegment seg) {
return seg.asSlice(0, 72);
}
public static VarHandle element_spec$VH() {
return constants$664.const$3;
}
/**
* Getter for field:
* {@snippet :
* struct _GParamSpec* element_spec;
* }
*/
public static MemorySegment element_spec$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$664.const$3.get(seg);
}
/**
* Setter for field:
* {@snippet :
* struct _GParamSpec* element_spec;
* }
*/
public static void element_spec$set(MemorySegment seg, MemorySegment x) {
constants$664.const$3.set(seg, x);
}
public static MemorySegment element_spec$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$664.const$3.get(seg.asSlice(index*sizeof()));
}
public static void element_spec$set(MemorySegment seg, long index, MemorySegment x) {
constants$664.const$3.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle fixed_n_elements$VH() {
return constants$664.const$4;
}
/**
* Getter for field:
* {@snippet :
* unsigned int fixed_n_elements;
* }
*/
public static int fixed_n_elements$get(MemorySegment seg) {
return (int)constants$664.const$4.get(seg);
}
/**
* Setter for field:
* {@snippet :
* unsigned int fixed_n_elements;
* }
*/
public static void fixed_n_elements$set(MemorySegment seg, int x) {
constants$664.const$4.set(seg, x);
}
public static int fixed_n_elements$get(MemorySegment seg, long index) {
return (int)constants$664.const$4.get(seg.asSlice(index*sizeof()));
}
public static void fixed_n_elements$set(MemorySegment seg, long index, int x) {
constants$664.const$4.set(seg.asSlice(index*sizeof()), x);
}
public static long sizeof() { return $LAYOUT().byteSize(); }
public static MemorySegment allocate(SegmentAllocator allocator) { return allocator.allocate($LAYOUT()); }
public static MemorySegment allocateArray(long len, SegmentAllocator allocator) {
return allocator.allocate(MemoryLayout.sequenceLayout(len, $LAYOUT()));
}
public static MemorySegment ofAddress(MemorySegment addr, Arena scope) { return RuntimeHelper.asArray(addr, $LAYOUT(), 1, scope); }
}