All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.xfa.text.RenderGlyph Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
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