| 1 | |
|
| 2 | |
|
| 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 | |
} |