com.mindoo.domino.jna.internal.FontId 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)
package com.mindoo.domino.jna.internal;
public class FontId {
private int m_fontId;
public int getFontId() {
return m_fontId;
}
public void setFontId(int m_fontId) {
this.m_fontId = m_fontId;
}
}