com.adobe.xfa.gfx.GFXDevRect 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.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;
}
}