157158159160161162163164165166167
if (BARCODE_CODABAR.equals(type)) { try { return new CodabarBarcode(data); } catch (BarcodeException e) { logger.error("Wrong codabar data supplied", e); return null;
176177178179180181182183184185186