com.github.axet.desktop.os.linux.handle.AppIndicatorInstanceStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of desktop Show documentation
Show all versions of desktop Show documentation
java desktop class extender. has all user specific folders
package com.github.axet.desktop.os.linux.handle;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
public class AppIndicatorInstanceStruct extends Structure {
public GObjectStruct parent;
public Pointer priv;
public AppIndicatorInstanceStruct() {
}
public AppIndicatorInstanceStruct(Pointer p) {
super(p);
read();
}
@Override
protected List getFieldOrder() {
return Arrays.asList("parent", "priv");
}
}