- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
37 lines
711 B
Java
37 lines
711 B
Java
package com.google.zxing.aztec.encoder;
|
|
|
|
import com.google.zxing.common.BitMatrix;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class AztecCode {
|
|
public int codeWords;
|
|
public boolean compact;
|
|
public int layers;
|
|
public BitMatrix matrix;
|
|
public int size;
|
|
|
|
public BitMatrix getMatrix() {
|
|
return this.matrix;
|
|
}
|
|
|
|
public void setCodeWords(int i) {
|
|
this.codeWords = i;
|
|
}
|
|
|
|
public void setCompact(boolean z) {
|
|
this.compact = z;
|
|
}
|
|
|
|
public void setLayers(int i) {
|
|
this.layers = i;
|
|
}
|
|
|
|
public void setMatrix(BitMatrix bitMatrix) {
|
|
this.matrix = bitMatrix;
|
|
}
|
|
|
|
public void setSize(int i) {
|
|
this.size = i;
|
|
}
|
|
}
|