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

com.adobe.xfa.gfx.GFXDevRect Maven / Gradle / Ivy

There is a newer version: 2024.11.18598.20241113T125352Z-241000
Show newest version
package com.adobe.xfa.gfx;

/**
 * Trivial device rectangle class.
 * @exclude from published api.
 */

public class GFXDevRect {
	public final int xMin;
	public final int yMin;
	public final int xMax;
	public final int yMax;

	GFXDevRect (int xMin, int yMin, int xMax, int yMax) {
		this.xMin = xMin;
		this.yMin = yMin;
		this.xMax = xMax;
		this.yMax = yMax;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy