org.purejava.appindicator._GDBusPropertyInfo 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 _GDBusPropertyInfo {
* int ref_count;
* char* name;
* char* signature;
* enum GDBusPropertyInfoFlags flags;
* struct _GDBusAnnotationInfo** annotations;
* };
* }
*/
public class _GDBusPropertyInfo {
public static MemoryLayout $LAYOUT() {
return constants$883.const$2;
}
public static VarHandle ref_count$VH() {
return constants$883.const$3;
}
/**
* Getter for field:
* {@snippet :
* int ref_count;
* }
*/
public static int ref_count$get(MemorySegment seg) {
return (int)constants$883.const$3.get(seg);
}
/**
* Setter for field:
* {@snippet :
* int ref_count;
* }
*/
public static void ref_count$set(MemorySegment seg, int x) {
constants$883.const$3.set(seg, x);
}
public static int ref_count$get(MemorySegment seg, long index) {
return (int)constants$883.const$3.get(seg.asSlice(index*sizeof()));
}
public static void ref_count$set(MemorySegment seg, long index, int x) {
constants$883.const$3.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle name$VH() {
return constants$883.const$4;
}
/**
* Getter for field:
* {@snippet :
* char* name;
* }
*/
public static MemorySegment name$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$883.const$4.get(seg);
}
/**
* Setter for field:
* {@snippet :
* char* name;
* }
*/
public static void name$set(MemorySegment seg, MemorySegment x) {
constants$883.const$4.set(seg, x);
}
public static MemorySegment name$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$883.const$4.get(seg.asSlice(index*sizeof()));
}
public static void name$set(MemorySegment seg, long index, MemorySegment x) {
constants$883.const$4.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle signature$VH() {
return constants$883.const$5;
}
/**
* Getter for field:
* {@snippet :
* char* signature;
* }
*/
public static MemorySegment signature$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$883.const$5.get(seg);
}
/**
* Setter for field:
* {@snippet :
* char* signature;
* }
*/
public static void signature$set(MemorySegment seg, MemorySegment x) {
constants$883.const$5.set(seg, x);
}
public static MemorySegment signature$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$883.const$5.get(seg.asSlice(index*sizeof()));
}
public static void signature$set(MemorySegment seg, long index, MemorySegment x) {
constants$883.const$5.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle flags$VH() {
return constants$884.const$0;
}
/**
* Getter for field:
* {@snippet :
* enum GDBusPropertyInfoFlags flags;
* }
*/
public static int flags$get(MemorySegment seg) {
return (int)constants$884.const$0.get(seg);
}
/**
* Setter for field:
* {@snippet :
* enum GDBusPropertyInfoFlags flags;
* }
*/
public static void flags$set(MemorySegment seg, int x) {
constants$884.const$0.set(seg, x);
}
public static int flags$get(MemorySegment seg, long index) {
return (int)constants$884.const$0.get(seg.asSlice(index*sizeof()));
}
public static void flags$set(MemorySegment seg, long index, int x) {
constants$884.const$0.set(seg.asSlice(index*sizeof()), x);
}
public static VarHandle annotations$VH() {
return constants$884.const$1;
}
/**
* Getter for field:
* {@snippet :
* struct _GDBusAnnotationInfo** annotations;
* }
*/
public static MemorySegment annotations$get(MemorySegment seg) {
return (java.lang.foreign.MemorySegment)constants$884.const$1.get(seg);
}
/**
* Setter for field:
* {@snippet :
* struct _GDBusAnnotationInfo** annotations;
* }
*/
public static void annotations$set(MemorySegment seg, MemorySegment x) {
constants$884.const$1.set(seg, x);
}
public static MemorySegment annotations$get(MemorySegment seg, long index) {
return (java.lang.foreign.MemorySegment)constants$884.const$1.get(seg.asSlice(index*sizeof()));
}
public static void annotations$set(MemorySegment seg, long index, MemorySegment x) {
constants$884.const$1.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); }
}