A B C D E F G I J L M N O P R S T W

A

AbstractBarcodeStrategy - Class in net.sourceforge.jbarcodebean.model
This abstract class, which implements the BarcodeStrategy interface, provides a basic implementation that is subclassed by all the concrete classes that provide Code39, Interleaved Code25, Codabar, MSI and all derivative encoding strategies.
AbstractBarcodeStrategy() - Constructor for class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
 
AbstractBarcodeStrategy.CharacterCode - Class in net.sourceforge.jbarcodebean.model
Inner class representing a character and its barcode encoding.
AbstractBarcodeStrategy.CharacterCode(char, byte[], int) - Constructor for class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy.CharacterCode
Constructor which fully initializes the properties of the object.
ALIGN_CENTER - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the barcode should be centered along the x-axis.
ALIGN_LEFT - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the barcode should be left aligned along the x-axis.
ALIGN_RIGHT - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the barcode should be right aligned along the x-axis.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to calculate the checksum from the text to encode, and return a String containing the text with the checksum included.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Returns a String containing the checksum-encoded version of the text passed to the method.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Codabar
Codabar does not have a checksum, so this function should never be called.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Code11
 
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Code128
Returns a String containing the checksum-encoded version of the text passed to the method.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Code93
 
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Returns a String containing the checksum-encoded version of the text passed to the method.
augmentWithChecksum(String) - Method in class net.sourceforge.jbarcodebean.model.MSI
Returns a String containing the checksum-encoded version of the text passed to the method.

B

BarcodeElement - Class in net.sourceforge.jbarcodebean
Class representing a single barcode module (bar or space).
BarcodeElement(int, int) - Constructor for class net.sourceforge.jbarcodebean.BarcodeElement
 
BarcodeException - Exception in net.sourceforge.jbarcodebean
Exception class for barcode encoding errors.
BarcodeException() - Constructor for exception net.sourceforge.jbarcodebean.BarcodeException
 
BarcodeException(String) - Constructor for exception net.sourceforge.jbarcodebean.BarcodeException
 
barcodeLabelText - Variable in class net.sourceforge.jbarcodebean.EncodedBarcode
The text caption that is displayed underneath the barcode
BarcodeStrategy - Interface in net.sourceforge.jbarcodebean.model
Interface which defines the barcode strategy for any given type of barcode.
BarcodeStrategyEditor - Class in net.sourceforge.jbarcodebean
A property editor for the BarcodeStrategy type.
BarcodeStrategyEditor() - Constructor for class net.sourceforge.jbarcodebean.BarcodeStrategyEditor
 
BaseCode39 - Class in net.sourceforge.jbarcodebean.model
Base class for Code39 variants.
BaseCode39() - Constructor for class net.sourceforge.jbarcodebean.model.BaseCode39
 

C

character - Variable in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy.CharacterCode
The character that is encoded
check - Variable in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy.CharacterCode
The check digit corresponding to this character, used in checksum calculations
checkSum - Variable in class net.sourceforge.jbarcodebean.model.Ean13
 
Codabar - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 3:1 (wide) variant of the Codabar barcode type.
Codabar() - Constructor for class net.sourceforge.jbarcodebean.model.Codabar
 
Codabar_2to1 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 2:1 (narrow) variant of the Codabar barcode type.
Codabar_2to1() - Constructor for class net.sourceforge.jbarcodebean.model.Codabar_2to1
 
Code11 - Class in net.sourceforge.jbarcodebean.model
 
Code11() - Constructor for class net.sourceforge.jbarcodebean.model.Code11
 
Code128 - Class in net.sourceforge.jbarcodebean.model
Code 128 barcode strategy implementation.
Code128() - Constructor for class net.sourceforge.jbarcodebean.model.Code128
 
Code39 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 3:1 (wide) variant of the Code 3 of 9 barcode type.
Code39() - Constructor for class net.sourceforge.jbarcodebean.model.Code39
 
Code39_2to1 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 2:1 (narrow) variant of the Code 3 of 9 barcode type.
Code39_2to1() - Constructor for class net.sourceforge.jbarcodebean.model.Code39_2to1
 
Code93 - Class in net.sourceforge.jbarcodebean.model
 
Code93() - Constructor for class net.sourceforge.jbarcodebean.model.Code93
 
Code93Extended - Class in net.sourceforge.jbarcodebean.model
 
Code93Extended() - Constructor for class net.sourceforge.jbarcodebean.model.Code93Extended
 
codes - Static variable in class net.sourceforge.jbarcodebean.model.BaseCode39
A static array of CharacterCode objects for the 3:1 (wide) variants of Code 39.
codes - Static variable in class net.sourceforge.jbarcodebean.model.Code128
A static array of CharacterCode objects for Code 128.
codes2to1 - Static variable in class net.sourceforge.jbarcodebean.model.BaseCode39
A static array of CharacterCode objects for the 2:1 (narrow) variants of Code 39.
computeChecksum(String, int) - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
computeSize(String) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Computes the length of the barcode (in bar/space modules) based on the text to encode.

D

draw(BufferedImage) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Draws the current barcode into the given image and returns it.

E

Ean13 - Class in net.sourceforge.jbarcodebean.model
EAN-13 barcode implementation.
Ean13() - Constructor for class net.sourceforge.jbarcodebean.model.Ean13
 
Ean8 - Class in net.sourceforge.jbarcodebean.model
EAN-8 barcode implementation.
Ean8() - Constructor for class net.sourceforge.jbarcodebean.model.Ean8
 
elements - Variable in class net.sourceforge.jbarcodebean.EncodedBarcode
The bars and spaces in the barcode
encode(String, boolean) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
This implementation carries out the following steps: Call AbstractBarcodeStrategy.preprocess(java.lang.String) Call AbstractBarcodeStrategy.augmentWithChecksum(java.lang.String) to add in the checksum Call AbstractBarcodeStrategy.postprocess(java.lang.String) Adds in the start and end sentinels Use the CharacterCode array returned by getCodes to encode the text into a barcode Insert left and right margins Return EncodedBarcode object
encode(String, boolean) - Method in interface net.sourceforge.jbarcodebean.model.BarcodeStrategy
Subclasses implement this method to encode some text into a barcode.
encode(String, boolean) - Method in class net.sourceforge.jbarcodebean.model.Code93
 
EncodedBarcode - Class in net.sourceforge.jbarcodebean
This class represents the bars, spaces and caption (text) that make up a fully encoded barcode.
EncodedBarcode(BarcodeElement[], String) - Constructor for class net.sourceforge.jbarcodebean.EncodedBarcode
Initializing constructor
ExtendedCode39 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 3:1 (wide) variant of the Extended Code 3 of 9 barcode type.
ExtendedCode39() - Constructor for class net.sourceforge.jbarcodebean.model.ExtendedCode39
 
ExtendedCode39_2to1 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 2:1 (narrow) variant of the Extended Code 3 of 9 barcode type.
ExtendedCode39_2to1() - Constructor for class net.sourceforge.jbarcodebean.model.ExtendedCode39_2to1
 

F

FNC_1 - Static variable in class net.sourceforge.jbarcodebean.model.Code128
Code 128 FUNCTION CODE 1
FNC_2 - Static variable in class net.sourceforge.jbarcodebean.model.Code128
Code 128 FUNCTION CODE 2
FNC_3 - Static variable in class net.sourceforge.jbarcodebean.model.Code128
Code 128 FUNCTION CODE 3
FNC_4 - Static variable in class net.sourceforge.jbarcodebean.model.Code128
Code 128 FUNCTION CODE 4

G

getAccessibleContext() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Returns a simple subclass of AccessibleContext.
getAngleDegrees() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the angleDegrees property, which determines the angle (from horizontal) at which the barcode is rendered.
getAsText() - Method in class net.sourceforge.jbarcodebean.BarcodeStrategyEditor
 
getBackground() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the background property, which determines the control background color (the space around the barcode, and behind the text caption).
getBarcodeBackground() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the barcodeBackground property, which determines the color of the spaces between the bars in the barcode (typically white).
getBarcodeHeight() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the barcodeHeight property, which determines the height of the barcode (excluding caption text) in pixels.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to return the text which appears below the barcode.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Codabar
This implementation of getBarcodeLabelText does nothing except return the text passed to the method.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Code11
 
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Code128
Returns the text parameter with function characters and control codes stripped out.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Code39
Returns an UPPER CASE version of the text parameter.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Code93
 
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Ean8
 
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.ExtendedCode39
Returns the text parameter unmodified.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Returns text unmodified.
getBarcodeLabelText(String) - Method in class net.sourceforge.jbarcodebean.model.MSI
Does nothing except return the String passed to the method.
getBeanDescriptor() - Method in class net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo
 
getBorder() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor methor for the border property.
getCharacterCode(char) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Looks for the specified character to encode in the CharacterCode array returned by the AbstractBarcodeStrategy.getCodes() method.
getCharacterCode(int) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Looks for an entry in the CharacterCode array returned by the AbstractBarcodeStrategy.getCodes() method, by its check attribute.
getCode() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the code property, which is the text encoded in the barcode.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to return an array of CharacterCode objects, representing all possible encodings of bars and spaces for every encodable character.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Codabar
This implementation of getCodes returns an array of CharacterCode objects for the wide Codabar format.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Codabar_2to1
This implementation of getCodes returns an array of CharacterCode objects for the narrow Codabar format.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Code128
This implementation of getCodes returns an array of CharacterCode objects for the Code 128 format.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Code39
This implementation of getCodes returns BaseCode39.codes.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Code39_2to1
This implementation of getCodes returns BaseCode39.codes2to1.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
getCodes() - Method in class net.sourceforge.jbarcodebean.model.ExtendedCode39
This implementation of getCodes returns BaseCode39.codes.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.ExtendedCode39_2to1
This implementation of getCodes returns BaseCode39.codes2to1.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
This implementation of getCodes returns an array of CharacterCode objects for the wide Interleaved Code25 format.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25_2to1
This implementation of getCodes returns an array of CharacterCode objects for the narrow Interleaved Code25 format.
getCodes() - Method in class net.sourceforge.jbarcodebean.model.MSI
This implementation of getCodes returns an array of CharacterCode objects for the MSI format.
getCodeType() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the codeType property, which is the barcode type.
getDefaultPropertyIndex() - Method in class net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo
 
getFont() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the font property.
getForeground() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the foreground property, which determines the color of the bars and caption text (typically black).
getHorizontalAlignment() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Returns the alignment of the barcode along the X axis.
getIcon(int) - Method in class net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo
 
getJavaInitializationString() - Method in class net.sourceforge.jbarcodebean.BarcodeStrategyEditor
 
getLabelPosition() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Returns the label position of the human readable barcode text.
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Sublclasses implement this method to return the width of the whitespace that must appear on each side of the barcode.
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Always returns 11 (eleven).
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Codabar
Always returns 11 (eleven).
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Code128
Always returns 11 (eleven).
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Ean13
Always returns 11 (eleven).
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Always returns 11 (eleven).
getMarginWidth() - Method in class net.sourceforge.jbarcodebean.model.MSI
Always returns 11 (eleven).
getMinimumSize() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for minimumSize property.
getNarrowestBarWidth() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the narrowestBarWidth property, which determines the width (in pixels) of the narrowest bar in the barcode.
getPreferredSize() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the preferredSize property.
getPropertyDescriptors() - Method in class net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo
 
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to return the start sentinel character.
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Always returns '*' (asterisk).
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Codabar
Always returns 'A'.
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code128
Always returns 0xffff, signalling to AbstractBarcodeStrategy superclass that it should not prefix a standard start character.
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Always returns 'A'.
getStartSentinel() - Method in class net.sourceforge.jbarcodebean.model.MSI
Always returns 'A'.
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to return the stop sentinel character.
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Always returns '*' (asterisk).
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Codabar
Always returns 'B'.
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code128
Always returns the Code 128 STOP character.
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Always returns 'B'.
getStopSentinel() - Method in class net.sourceforge.jbarcodebean.model.MSI
Always returns 'B'.
getTags() - Method in class net.sourceforge.jbarcodebean.BarcodeStrategyEditor
 
getType() - Method in class net.sourceforge.jbarcodebean.BarcodeElement
 
getVersion() - Static method in class net.sourceforge.jbarcodebean.JBarcodeBean
Returns the version of this JBarcodeBean implementation.
getWidth() - Method in class net.sourceforge.jbarcodebean.BarcodeElement
 

I

Interleaved25 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 3:1 (wide) variant of the Interleaved Code 2 of 5 barcode type.
Interleaved25() - Constructor for class net.sourceforge.jbarcodebean.model.Interleaved25
 
Interleaved25_2to1 - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the 2:1 (narrow) variant of the Interleaved Code 2 of 5 barcode type.
Interleaved25_2to1() - Constructor for class net.sourceforge.jbarcodebean.model.Interleaved25_2to1
 
isCheckDigit() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Accessor method for the checkDigit property, which determines whether a check digit is encoded in the barcode.
isFocusTraversable() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Always returns false, as this control cannot receive focus.
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses must implement this method to return true or false depending on whether the barcode type is interleaved.
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Always returns false.
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Codabar
Always returns false
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Code128
Always returns false.
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Always returns true.
isInterleaved() - Method in class net.sourceforge.jbarcodebean.model.MSI
Always returns false
isOpaque() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Always returns true, as this component renders its entire drawing area.
isShowText() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Deprecated. As of 1.2.0, replaced by JBarcodeBean.getLabelPosition(). This will return true if label position is JBarcodeBean.LABEL_BOTTOM and false otherwise.

J

jbarcodebean - package jbarcodebean
 
JBarcodeBean - Class in jbarcodebean
Deprecated. As of JBarcodeBean 1.2 replaced by net.sourceforge.jbarcodebean.JBarcodeBean.
JBarcodeBean(String, BarcodeStrategy) - Constructor for class jbarcodebean.JBarcodeBean
Deprecated.  
JBarcodeBean() - Constructor for class jbarcodebean.JBarcodeBean
Deprecated.  
JBarcodeBean - Class in net.sourceforge.jbarcodebean
JFC Swing-compatible JavaBeans TM component that renders barcodes in a variety of different formats.
JBarcodeBean(String, BarcodeStrategy) - Constructor for class net.sourceforge.jbarcodebean.JBarcodeBean
Contructor that allows an initial barcode and code type to be specified.
JBarcodeBean() - Constructor for class net.sourceforge.jbarcodebean.JBarcodeBean
Parameterless constructor.
JBarcodeBeanBeanInfo - Class in jbarcodebean
Deprecated. As of JBarcodeBean 1.2 replaced by net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo.
JBarcodeBeanBeanInfo() - Constructor for class jbarcodebean.JBarcodeBeanBeanInfo
Deprecated.  
JBarcodeBeanBeanInfo - Class in net.sourceforge.jbarcodebean
This class is an implementation of the java.beans.BeanInfo interface, that provides GUI Builders with information about JBarcodeBean.
JBarcodeBeanBeanInfo() - Constructor for class net.sourceforge.jbarcodebean.JBarcodeBeanBeanInfo
 

L

LABEL_BOTTOM - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the human readable barcode text should be printed at the bottom of the barcode.
LABEL_NONE - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the human readable barcode text should not be printed at all.
LABEL_TOP - Static variable in class net.sourceforge.jbarcodebean.JBarcodeBean
Constant indicating that the human readable barcode text should be printed at the top of the barcode.

M

MANDATORY_CHECKSUM - Static variable in interface net.sourceforge.jbarcodebean.model.BarcodeStrategy
When returned by BarcodeStrategy.requiresChecksum(), indicates that this type of barcode always has a checksum.
minimumSize() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Deprecated. Use JBarcodeBean.getMinimumSize().
MSI - Class in net.sourceforge.jbarcodebean.model
This class, which implements the BarcodeStrategy interface, knows how to encode the MSI barcode type.
MSI() - Constructor for class net.sourceforge.jbarcodebean.model.MSI
 

N

net.sourceforge.jbarcodebean - package net.sourceforge.jbarcodebean
Package containing JBarcodeBean component class, and supporting classes.
net.sourceforge.jbarcodebean.model - package net.sourceforge.jbarcodebean.model
 
NO_CHECKSUM - Static variable in interface net.sourceforge.jbarcodebean.model.BarcodeStrategy
When returned by BarcodeStrategy.requiresChecksum(), indicates that this type of barcode does not support a checksum.

O

OPTIONAL_CHECKSUM - Static variable in interface net.sourceforge.jbarcodebean.model.BarcodeStrategy
When returned by BarcodeStrategy.requiresChecksum(), indicates that this type of barcode may have an optional checksum.

P

paintComponent(Graphics) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Component paint method.
paramString() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Always returns the value of the code property.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to perform any postprocessing required to the text after including the checksum.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Does nothing except return the String passed to the method.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Codabar
This implementation of postprocess does nothing except return the text passed to the method.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code11
 
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code128
Does nothing except return the String passed to the method.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code93
 
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Adds a leading zero if the length of text is odd.
postprocess(String) - Method in class net.sourceforge.jbarcodebean.model.MSI
Does nothing except return the String passed to the method.
preferredSize() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Deprecated. Use JBarcodeBean.getPreferredSize().
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy
Subclasses implement this method to perform any preprocessing necessary on the original text to encode.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Codabar
This implementation of preprocess does nothing except return the text passed to the method.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code11
 
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code128
Inserts start character and code change characters.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code39
Returns an UPPER CASE version of the text parameter.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code93
 
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Code93Extended
 
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Ean8
 
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.ExtendedCode39
Converts ASCII to Code 39 characters.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
No preprocessing performed.
preprocess(String) - Method in class net.sourceforge.jbarcodebean.model.MSI
Does nothing except return the String passed to the method.

R

requiresChecksum() - Method in interface net.sourceforge.jbarcodebean.model.BarcodeStrategy
Subclasses implement this method to determine whether this type of barcode has a mandatory, optional or no checksum.
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.BaseCode39
Always returns BarcodeStrategy.OPTIONAL_CHECKSUM.
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Codabar
Always returns BarcodeStrategy.NO_CHECKSUM.
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Code11
 
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Code128
Always returns BarcodeStrategy.MANDATORY_CHECKSUM.
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Code93
 
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Ean13
 
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.Interleaved25
Always returns BarcodeStrategy.OPTIONAL_CHECKSUM.
requiresChecksum() - Method in class net.sourceforge.jbarcodebean.model.MSI
Always returns BarcodeStrategy.MANDATORY_CHECKSUM.

S

setAngleDegrees(double) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the angleDegrees property, which determines the angle (from horizontal) at which the barcode is rendered.
setAsText(String) - Method in class net.sourceforge.jbarcodebean.BarcodeStrategyEditor
 
setBackground(Color) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the background property, which determines the control background color (the space around the barcode, and behind the text caption).
setBarcodeBackground(Color) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the barcodeBackground property, which determines the color of the spaces between the bars in the barcode (typically white).
setBarcodeHeight(int) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the barcodeHeight property, which determines the height of the barcode (excluding caption text) in pixels.
setBorder(Border) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator methor for the border property.
setCheckDigit(boolean) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the checkDigit property, which determines whether a check digit is encoded in the barcode.
setCode(String) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the code property, which is the text encoded in the barcode.
setCodeType(BarcodeStrategy) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the codeType property, which is the barcode type.
setFont(Font) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the font property.
setForeground(Color) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the foreground property, which determines the color of the bars and caption text (typically black).
setHorizontalAlignment(int) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Sets the alignment of the barcode along the X axis.
setLabelPosition(int) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Sets the label position of the human readable bacode text.
setMinimumSize(Dimension) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the minimumSize property.
setNarrowestBarWidth(int) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the narrowestBarWidth property, which determines the width (in pixels) of the narrowest bar in the barcode.
setPreferredSize(Dimension) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Mutator method for the preferredSize property.
setShowText(boolean) - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Deprecated. As of 1.2.0, replaced by JBarcodeBean.setLabelPosition(int). When setting this property to true the label position will be set to JBarcodeBean.LABEL_BOTTOM, setting the property to false will set the label position to JBarcodeBean.LABEL_NONE.
SHIFT_DOLLAR - Static variable in class net.sourceforge.jbarcodebean.model.Code93
 
SHIFT_PERCENT - Static variable in class net.sourceforge.jbarcodebean.model.Code93
 
SHIFT_PLUS - Static variable in class net.sourceforge.jbarcodebean.model.Code93
 
SHIFT_SLASH - Static variable in class net.sourceforge.jbarcodebean.model.Code93
 

T

toString() - Method in class net.sourceforge.jbarcodebean.JBarcodeBean
Always returns the value of the code property.
TYPE_BAR - Static variable in class net.sourceforge.jbarcodebean.BarcodeElement
 
TYPE_SPACE - Static variable in class net.sourceforge.jbarcodebean.BarcodeElement
 

W

widths - Variable in class net.sourceforge.jbarcodebean.model.AbstractBarcodeStrategy.CharacterCode
The widths of the modules (bars and spaces) of this encoded character

A B C D E F G I J L M N O P R S T W

Copyright © 2004-2009 The JBarcodeBean project. All Rights Reserved.