mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
52 lines
979 B
Java
52 lines
979 B
Java
package com.google.zxing.aztec.encoder;
|
|
|
|
import com.google.zxing.common.BitMatrix;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class AztecCode {
|
|
private int codeWords;
|
|
private boolean compact;
|
|
private int layers;
|
|
private BitMatrix matrix;
|
|
private int size;
|
|
|
|
public int getCodeWords() {
|
|
return this.codeWords;
|
|
}
|
|
|
|
public int getLayers() {
|
|
return this.layers;
|
|
}
|
|
|
|
public BitMatrix getMatrix() {
|
|
return this.matrix;
|
|
}
|
|
|
|
public int getSize() {
|
|
return this.size;
|
|
}
|
|
|
|
public boolean isCompact() {
|
|
return this.compact;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|