Uses of Class
net.sourceforge.barbecue.Barcode

Packages that use Barcode
net.sourceforge.barbecue   
net.sourceforge.barbecue.linear.codabar   
net.sourceforge.barbecue.linear.code128   
net.sourceforge.barbecue.linear.code39   
net.sourceforge.barbecue.twod.pdf417   
 

Uses of Barcode in net.sourceforge.barbecue
 

Methods in net.sourceforge.barbecue that return Barcode
protected  Barcode BarcodeServlet.getBarcode(java.lang.String type, java.lang.String data, java.lang.String appId, boolean checkSum)
          Returns the appropriate barcode for the speficied parameters.
static Barcode BarcodeFactory.createCode128(java.lang.String data)
          Creates a Code 128 barcode that dynamically switches between character sets to give the smallest possible encoding.
static Barcode BarcodeFactory.createCode128A(java.lang.String data)
          Creates a Code 128 barcode using the A character set.
static Barcode BarcodeFactory.createCode128B(java.lang.String data)
          Creates a Code 128 barcode using the B character set.
static Barcode BarcodeFactory.createCode128C(java.lang.String data)
          Creates a Code 128 barcode using the C character set.
static Barcode BarcodeFactory.createUCC128(java.lang.String applicationIdentifier, java.lang.String data)
          Creates a UCC 128 barcode.
static Barcode BarcodeFactory.createEAN128(java.lang.String data)
          Creates a EAN 128 barcode.
static Barcode BarcodeFactory.createUSPS(java.lang.String data)
          Creates a US Postal Service barcode based on the UCC/EAN 128 symbology.
static Barcode BarcodeFactory.createShipmentIdentificationNumber(java.lang.String data)
          Creates a shipment identification number based on the UCC/EAN 128 symbology.
static Barcode BarcodeFactory.createSSCC18(java.lang.String data)
          Creates an SSCC-18 number based on the UCC/EAN 128 symbology.
static Barcode BarcodeFactory.createSCC14ShippingCode(java.lang.String data)
          Creates an SCC-14 shipping code number based on the UCC/EAN 128 symbology.
static Barcode BarcodeFactory.createGlobalTradeItemNumber(java.lang.String data)
          Creates a Global Trade Item Number (GTIN) based on the UCC/EAN 128 symbology.
static Barcode BarcodeFactory.createPDF417(java.lang.String data)
          Creates a PDF417 two dimensional barcode.
static Barcode BarcodeFactory.createCode39(java.lang.String data, boolean requiresChecksum)
          Creates a Code 39 linear barcode.
static Barcode BarcodeFactory.create3of9(java.lang.String data, boolean requiresChecksum)
          Creates a Code 3 of 9 (Code 39) linear barcode.
static Barcode BarcodeFactory.createUSD3(java.lang.String data, boolean requiresChecksum)
          Creates a USD3 (Code 39) linear barcode.
static Barcode BarcodeFactory.createCodabar(java.lang.String data)
          Creates a Codabar linear barcode.
static Barcode BarcodeFactory.createUSD4(java.lang.String data)
          Creates a USD-4 (Codabar) linear barcode.
static Barcode BarcodeFactory.createNW7(java.lang.String data)
          Creates a NW-7 (Codabar) linear barcode.
static Barcode BarcodeFactory.createMonarch(java.lang.String data)
          Creates a Monarch (Codabar) linear barcode.
static Barcode BarcodeFactory.create2of7(java.lang.String data)
          Creates a 2 of 7 (Codabar) linear barcode.
 

Methods in net.sourceforge.barbecue with parameters of type Barcode
static java.awt.image.BufferedImage BarcodeImageHandler.getImage(Barcode barcode)
          Creates an image for a barcode that can be used in other GUI componenets (e.g.
static void BarcodeImageHandler.outputBarcodeAsJPEGImage(Barcode barcode, java.io.OutputStream os)
          Outputs a barcode directly to the given output stream, encoded as a JPEG image.
 

Uses of Barcode in net.sourceforge.barbecue.linear.codabar
 

Subclasses of Barcode in net.sourceforge.barbecue.linear.codabar
 class CodabarBarcode
          This is a concrete implementation of the Codabar barcode, AKA USD-4, Monarch, NW-7 and 2of7.
 

Uses of Barcode in net.sourceforge.barbecue.linear.code128
 

Subclasses of Barcode in net.sourceforge.barbecue.linear.code128
 class Code128Barcode
          This is a concrete implementation of the Code 128 barcode.
 class UCCEAN128Barcode
          An implementation of the UCC 128 and EAN 128 code formats.
 

Uses of Barcode in net.sourceforge.barbecue.linear.code39
 

Subclasses of Barcode in net.sourceforge.barbecue.linear.code39
 class Code39Barcode
          This is a concrete implementation of the Code 39 barcode, AKA 3of9, USD-3.
 

Uses of Barcode in net.sourceforge.barbecue.twod.pdf417
 

Subclasses of Barcode in net.sourceforge.barbecue.twod.pdf417
 class PDF417Barcode
          Implementation of the PDF417 two dimensional barcode format.