40 lines
925 B
Java
40 lines
925 B
Java
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;
|
|
}
|
|
}
|