Coverage Report - org.homeunix.thecave.buddi.plugin.builtin.cellrenderer.ChequeTransactionCellRenderer
 
Classes in this File Line Coverage Branch Coverage Complexity
ChequeTransactionCellRenderer
100%
4/4
N/A
1
 
 1  
 /*
 2  
  * Created on Nov 5, 2007 by wyatt
 3  
  */
 4  
 package org.homeunix.thecave.buddi.plugin.builtin.cellrenderer;
 5  
 
 6  
 import org.homeunix.thecave.buddi.i18n.BuddiKeys;
 7  
 import org.homeunix.thecave.buddi.plugin.api.util.TextFormatter;
 8  
 
 9  
 public class ChequeTransactionCellRenderer extends DefaultTransactionCellRenderer {
 10  
         public static final long serialVersionUID = 0;
 11  
         
 12  695
         public ChequeTransactionCellRenderer() {
 13  695
                 cheques = true;
 14  695
         }
 15  
         
 16  
         @Override
 17  
         public String getName() {
 18  2798
                 return TextFormatter.getTranslation(BuddiKeys.DEFAULT_TRANSLATION_CELL_RENDERER_WITH_CHEQUES);
 19  
         }
 20  
 }