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.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
 Module CompositeModule.getModule(int index)
          Returns the child module at the specified index.
protected abstract  Module[] Barcode.encodeData()
           
protected abstract  Module Barcode.calculateChecksum()
           
protected abstract  Module Barcode.getPreAmble()
           
protected abstract  Module Barcode.getPostAmble()
           
 

Methods in net.sourceforge.barbecue with parameters of type Module
 void CompositeModule.add(Module module)
          Adds the given module to this composite module.
protected  double Barcode.drawModule(Module module, AbstractOutput params, double x, double y)
           
 

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
protected static Module Code128Barcode.START_A
           
protected static Module Code128Barcode.START_B
           
protected 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
protected  Module UCCEAN128Barcode.getPreAmble()
          Returns the pre-amble for this barcode type.
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.
protected  Module[] Code128Barcode.encodeData()
          Encodes the data of the barcode into bars.
protected  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.
 

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
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.
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.
 

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.