Uses of Class
net.sourceforge.barbecue.Module

Packages that use Module
net.sourceforge.barbecue   
net.sourceforge.barbecue.linear.codabar   
net.sourceforge.barbecue.linear.code128   
net.sourceforge.barbecue.linear.code39   
net.sourceforge.barbecue.linear.ean   
net.sourceforge.barbecue.linear.postnet   
net.sourceforge.barbecue.linear.twoOfFive   
net.sourceforge.barbecue.linear.upc   
net.sourceforge.barbecue.twod.pdf417   
 

Uses of Module in net.sourceforge.barbecue
 

Subclasses of Module in net.sourceforge.barbecue
 class BlankModule
          Specific implementation of Module that provides blank space.
 class CompositeModule
          Specific implementation of Module that allows the grouping of multiple Modules into one parent module.
 class SeparatorModule
          Specific implementation of Module that draws a blank bar (of configurable width).
 

Methods in net.sourceforge.barbecue that return Module
protected abstract  Module[] Barcode.encodeData()
           
protected abstract  Module Barcode.calculateChecksum()
           
protected abstract  Module Barcode.getPreAmble()
           
protected abstract  Module Barcode.getPostAmble()
           
 Module CompositeModule.getModule(int index)
          Returns the child module at the specified index.
 

Methods in net.sourceforge.barbecue with parameters of type Module
protected  int Barcode.drawModule(Module module, Output output, int x, int y, int barWidth, int barHeight)
           
 void CompositeModule.add(Module module)
          Adds the given module to this composite module.
 

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

Methods in net.sourceforge.barbecue.linear.codabar that return Module
protected  Module[] CodabarBarcode.encodeData()
          Encodes the data of the barcode into bars.
protected  Module CodabarBarcode.calculateChecksum()
          Calculates the check sum digit for the barcode.
protected  Module CodabarBarcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module CodabarBarcode.getPostAmble()
          Returns the post-amble for the barcode.
 

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

Fields in net.sourceforge.barbecue.linear.code128 declared as Module
static Module Code128Barcode.START_A
           
static Module Code128Barcode.START_B
           
static Module Code128Barcode.START_C
           
protected static Module Code128Barcode.STOP
           
protected static Module Code128Barcode.QUIET_SECTION
           
 

Methods in net.sourceforge.barbecue.linear.code128 that return Module
 Module[] Code128Barcode.encodeData()
          Encodes the data of the barcode into bars.
 Module Code128Barcode.calculateChecksum()
          Calculates the check sum digit for the barcode.
protected  Module Code128Barcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module Code128Barcode.getPostAmble()
          Returns the post amble for the barcode.
static Module ModuleFactory.getModule(java.lang.String key, int mode)
          Returns the module that represents the specified character and character set.
static Module ModuleFactory.getModuleForIndex(int index, int mode)
          Returns the encoded module at the given index position.
 

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

Fields in net.sourceforge.barbecue.linear.code39 declared as Module
static Module ModuleFactory.START_STOP
          The start and stop character for the barcode
 

Methods in net.sourceforge.barbecue.linear.code39 that return Module
protected  Module[] Code39Barcode.encodeData()
          Returns the encoded data for the barcode.
protected  Module Code39Barcode.calculateChecksum()
          Returns the checksum for the barcode, pre-encoded as a Module.
protected  Module Code39Barcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module Code39Barcode.getPostAmble()
          Returns the post-amble for the barcode.
static Module ModuleFactory.getModule(java.lang.String key)
          Returns the module that represents the specified character.
static Module ModuleFactory.getModuleForIndex(int index)
          Returns the encoded module at the given index position.
 

Uses of Module in net.sourceforge.barbecue.linear.ean
 

Methods in net.sourceforge.barbecue.linear.ean that return Module
protected  Module EAN13Barcode.getRightMargin()
           
protected  Module[] EAN13Barcode.encodeData()
          Returns the encoded data for the barcode.
protected  Module EAN13Barcode.calculateChecksum()
          Returns the checksum for the barcode, pre-encoded as a Module.
protected  Module UCCEAN128Barcode.getPreAmble()
          Returns the pre-amble for this barcode type.
 

Uses of Module in net.sourceforge.barbecue.linear.postnet
 

Subclasses of Module in net.sourceforge.barbecue.linear.postnet
 class PostNetModule
           
 

Methods in net.sourceforge.barbecue.linear.postnet that return Module
static Module ModuleFactory.getModule(java.lang.String key)
           
static Module ModuleFactory.getModuleForIndex(int index)
           
protected  Module PostNetBarcode.calculateChecksum()
           
protected  Module[] PostNetBarcode.encodeData()
           
protected  Module PostNetBarcode.getPostAmble()
           
protected  Module PostNetBarcode.getPreAmble()
           
 

Uses of Module in net.sourceforge.barbecue.linear.twoOfFive
 

Methods in net.sourceforge.barbecue.linear.twoOfFive that return Module
protected  Module Int2of5Barcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module Int2of5Barcode.getPostAmble()
          Returns the post-amble for the barcode.
protected  Module[] Int2of5Barcode.encodeData()
          Encodes the data of the barcode into bars.
protected  Module[] Std2of5Barcode.encodeData()
          Encodes the data of the barcode into bars.
protected  Module Std2of5Barcode.calculateChecksum()
          Calculates the check sum digit for the barcode.
protected  Module Std2of5Barcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module Std2of5Barcode.getPostAmble()
          Returns the post-amble for the barcode.
 

Uses of Module in net.sourceforge.barbecue.linear.upc
 

Fields in net.sourceforge.barbecue.linear.upc declared as Module
static Module ModuleFactory.LEFT_GUARD
          The guards for the barcode
static Module ModuleFactory.CENTRE_GUARD
           
static Module ModuleFactory.RIGHT_GUARD
           
static Module ModuleFactory.LEFT_MARGIN
           
static Module ModuleFactory.RIGHT_MARGIN
           
 

Methods in net.sourceforge.barbecue.linear.upc that return Module
static Module ModuleFactory.getModule(java.lang.String key, int position)
          Returns the module that represents the specified character.
static Module ModuleFactory.getModuleForIndex(int index)
          Returns the encoded module at the given index position.
protected  Module[] UPCABarcode.encodeData()
          Returns the encoded data for the barcode.
protected  Module UPCABarcode.calculateChecksum()
          Returns the checksum for the barcode, pre-encoded as a Module.
protected  Module UPCABarcode.getLeftMargin()
           
protected  Module UPCABarcode.getRightMargin()
           
protected  Module UPCABarcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module UPCABarcode.getCentreGuard()
          Returns the middle bar for the barcode.
protected  Module UPCABarcode.getPostAmble()
          Returns the post-amble for the barcode.
 

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

Subclasses of Module in net.sourceforge.barbecue.twod.pdf417
 class PDF417Module
          Specific module implementation that draws an entire PDF417 barcode as one barbecue module.
 

Methods in net.sourceforge.barbecue.twod.pdf417 that return Module
protected  Module[] PDF417Barcode.encodeData()
          Returns the encoded data for the barcode.
protected  Module PDF417Barcode.calculateChecksum()
          Returns the checksum for the barcode, pre-encoded as a Module.
protected  Module PDF417Barcode.getPreAmble()
          Returns the pre-amble for the barcode.
protected  Module PDF417Barcode.getPostAmble()
          Returns the post-amble for the barcode.
 



Copyright © 2003-2007 barbecue.sourceforge.net. All Rights Reserved.