74 lines
1.3 KiB
Java
74 lines
1.3 KiB
Java
package com.kofax.kmc.ken.engines.ocr;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class OcrWord {
|
|
String hS;
|
|
private int hU;
|
|
private int hV;
|
|
private int hW;
|
|
private int hX;
|
|
int height;
|
|
int width;
|
|
int x;
|
|
int y;
|
|
|
|
public void setY(int i) {
|
|
this.y = i;
|
|
}
|
|
|
|
public void setX(int i) {
|
|
this.x = i;
|
|
}
|
|
|
|
public void setWidth(int i) {
|
|
this.width = i;
|
|
}
|
|
|
|
public void setText(String str) {
|
|
this.hS = str;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public void setTRy(int i) {
|
|
this.hV = i;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public void setTRx(int i) {
|
|
this.hW = i;
|
|
}
|
|
|
|
protected void setTLx(int i) {
|
|
this.hX = i;
|
|
}
|
|
|
|
public void setHeight(int i) {
|
|
this.height = i;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public void setBRy(int i) {
|
|
this.hU = i;
|
|
}
|
|
|
|
public int getY() {
|
|
return this.y;
|
|
}
|
|
|
|
public int getX() {
|
|
return this.x;
|
|
}
|
|
|
|
public int getWidth() {
|
|
return this.hW - this.hX;
|
|
}
|
|
|
|
public String getText() {
|
|
return this.hS;
|
|
}
|
|
|
|
public int getHeight() {
|
|
return this.hU - this.hV;
|
|
}
|
|
}
|