addPattern static method
void
addPattern()
Implementation
static void addPattern(
List<List<int>> patterns,
int patternIndex,
List<int> checkSum,
List<int> checkWeight,
int position,
) {
patterns.add(Code128Reader.codePatterns[patternIndex]);
if (position != 0) {
checkWeight[0]++;
}
checkSum[0] += patternIndex * checkWeight[0];
}