Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package com.google.zxing.aztec.encoder;
import com.google.zxing.common.BitArray;
/* loaded from: classes.dex */
abstract class Token {
static final Token b = new SimpleToken(null, 0, 0);
private final Token a;
Token(Token token) {
this.a = token;
}
final Token a() {
return this.a;
}
abstract void a(BitArray bitArray, byte[] bArr);
final Token b(int i, int i2) {
return new BinaryShiftToken(this, i, i2);
}
final Token a(int i, int i2) {
return new SimpleToken(this, i, i2);
}
}