public class UPCEANCanvasLogicHandler extends Object implements ClassicBarcodeLogicHandler
| Constructor and Description |
|---|
UPCEANCanvasLogicHandler(AbstractBarcodeBean bcBean,
Canvas canvas)
Main constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addBar(boolean black,
int width)
This method indicates a new bar to be painted.
|
void |
endBarcode()
This is always the last method called.
|
void |
endBarGroup()
This method indicates the end of a previously started bar group.
|
void |
startBarcode(String msg,
String formattedMsg)
This is always the first method called.
|
void |
startBarGroup(BarGroup type,
String submsg)
This method is called when a new group of bars is about to start.
|
public UPCEANCanvasLogicHandler(AbstractBarcodeBean bcBean, Canvas canvas)
bcBean - the barcode implementation classcanvas - the canvas to paint topublic void startBarcode(String msg, String formattedMsg)
BarcodeLogicHandlerstartBarcode in interface BarcodeLogicHandlermsg - full message to be encodedformattedMsg - message as it is to be presented in the
human-readable partClassicBarcodeLogicHandlerpublic void startBarGroup(BarGroup type, String submsg)
ClassicBarcodeLogicHandlerstartBarGroup in interface ClassicBarcodeLogicHandlertype - a constant indicating the type of group. The meaning of the
integer values is implementation-dependant.submsg - In case of parts of the message to be encoded this
parameter holds the character or characters being encoded.ClassicBarcodeLogicHandlerpublic void addBar(boolean black,
int width)
ClassicBarcodeLogicHandleraddBar in interface ClassicBarcodeLogicHandlerblack - True if the bar is to be painted black, False if
white/transparentwidth - logical weight of the bar. Concrete implementations are
free to define this to be height or width. For example, 1 may be interpreted
as "narrow bar", 2 as "wide bar" for certain barcodes. While other barcodes
might define 1 to be "short bar", 2 as "tall bar".
Also, this should not be confused with the effective painting width, or the
actual physical size of the bar.ClassicBarcodeLogicHandlerpublic void endBarGroup()
ClassicBarcodeLogicHandlerendBarGroup in interface ClassicBarcodeLogicHandlerClassicBarcodeLogicHandlerpublic void endBarcode()
BarcodeLogicHandlerendBarcode in interface BarcodeLogicHandlerClassicBarcodeLogicHandlerCopyright © 2003–2023. All rights reserved.