what-the-bank/sources/com/kofax/android/abc/xvrs/XVrsDocument.java

40 lines
925 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.android.abc.xvrs;
/* loaded from: classes3.dex */
public class XVrsDocument {
protected XVrsDocumentBoundary m_boundary;
protected String m_detector;
private long m_impl;
protected XVrsDocumentLandmark m_landmark;
public static native boolean nativeStaticInitializer();
public native long nativeCreate(long j);
static {
if (!nativeStaticInitializer()) {
throw new RuntimeException("com.kofax.android.abc.xvrs.XVrsDocument: Static initializer failed.");
}
}
public XVrsDocument(long j) {
this.m_impl = nativeCreate(j);
}
public long getPtr() {
return this.m_impl;
}
public XVrsDocumentLandmark Landmark() {
return this.m_landmark;
}
public String DetectorName() {
return this.m_detector;
}
public XVrsDocumentBoundary Boundary() {
return this.m_boundary;
}
}