1 package net.sourceforge.barbecue.formatter; 2 3 import net.sourceforge.barbecue.Barcode; 4 5 public interface BarcodeFormatter { 6 7 void format(Barcode barcode) throws FormattingException; 8 }