com.adobe.xfa.text.RenderGlyph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.adobe.xfa.text;
import com.adobe.xfa.ut.FindBugsSuppress;
/**
* @exclude from published api.
*/
class RenderGlyph {
int mnGlyphID;
int mcGlyph;
RenderGlyph () {
mnGlyphID = 0;
mcGlyph = '\0';
}
RenderGlyph (int nGlyphID, int cGlyph) {
mnGlyphID = nGlyphID;
mcGlyph = cGlyph;
}
}
/**
* @exclude from published api.
*/
class RenderInfo extends RenderGlyph {
GlyphLoc mpoGlyphLoc;
boolean mbFlushBefore;
boolean mbFlushAfter;
boolean mbAttrChange;
@FindBugsSuppress(code="UrF") // field is never read - incomplete implementation?
boolean mbShifted;
RenderInfo () {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy