com.mindoo.domino.jna.internal.structs.compoundtext.NotesFontIDFieldsStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-jna Show documentation
Show all versions of domino-jna Show documentation
Java project to access the HCL Domino C API using Java Native Access (JNA)
The newest version!
package com.mindoo.domino.jna.internal.structs.compoundtext;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Arrays;
import java.util.List;
import com.mindoo.domino.jna.internal.structs.BaseStructure;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
/**
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class NotesFontIDFieldsStruct extends BaseStructure {
/** Font face (FONT_FACE_xxx) */
public byte Face;
/** Attributes (ISBOLD,etc) */
public byte Attrib;
/** Color index (NOTES_COLOR_xxx) */
public byte Color;
/** Size of font in points */
public byte PointSize;
public NotesFontIDFieldsStruct() {
super();
setAlignType(Structure.ALIGN_NONE);
}
public static NotesFontIDFieldsStruct newInstance() {
return AccessController.doPrivileged(new PrivilegedAction() {
@Override
public NotesFontIDFieldsStruct run() {
return new NotesFontIDFieldsStruct();
}
});
}
protected List getFieldOrder() {
return Arrays.asList("Face", "Attrib", "Color", "PointSize");
}
/**
* @param Face Font face (FONT_FACE_xxx)
* @param Attrib Attributes (ISBOLD,etc)
* @param Color Color index (NOTES_COLOR_xxx)
* @param PointSize Size of font in points
*/
public NotesFontIDFieldsStruct(byte Face, byte Attrib, byte Color, byte PointSize) {
super();
this.Face = Face;
this.Attrib = Attrib;
this.Color = Color;
this.PointSize = PointSize;
setAlignType(Structure.ALIGN_NONE);
}
public static NotesFontIDFieldsStruct newInstance(final byte Face, final byte Attrib, final byte Color, final byte PointSize) {
return AccessController.doPrivileged(new PrivilegedAction() {
@Override
public NotesFontIDFieldsStruct run() {
return new NotesFontIDFieldsStruct(Face, Attrib, Color, PointSize);
}
});
}
public NotesFontIDFieldsStruct(Pointer peer) {
super(peer);
setAlignType(Structure.ALIGN_NONE);
}
public static NotesFontIDFieldsStruct newInstance(final Pointer peer) {
return AccessController.doPrivileged(new PrivilegedAction() {
@Override
public NotesFontIDFieldsStruct run() {
return new NotesFontIDFieldsStruct(peer);
}
});
}
public static class ByReference extends NotesFontIDFieldsStruct implements Structure.ByReference {
};
public static class ByValue extends NotesFontIDFieldsStruct implements Structure.ByValue {
};
}