36 lines
644 B
Java
36 lines
644 B
Java
|
package net.sourceforge.zbar;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class Symbol {
|
||
|
private long peer;
|
||
|
|
||
|
public static native void init();
|
||
|
|
||
|
public native void destroy(long j);
|
||
|
|
||
|
public native String getData();
|
||
|
|
||
|
public native byte[] getDataBytes();
|
||
|
|
||
|
public native long next();
|
||
|
|
||
|
protected void finalize() {
|
||
|
synchronized (this) {
|
||
|
long j = this.peer;
|
||
|
if (j != 0) {
|
||
|
destroy(j);
|
||
|
this.peer = 0L;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public Symbol(long j) {
|
||
|
this.peer = j;
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
System.loadLibrary("s4515e");
|
||
|
init();
|
||
|
}
|
||
|
}
|