public Renderer(boolean doWizardRendering) {
this.doWizardRendering = doWizardRendering;
if (doWizardRendering) {
Icon wiz = ClientIcons.WAND_16;
Icon fcn = Icons.FORMULA_ICON;
withoutWizard = new IconRow(Empty.iconOfSameSize(wiz), fcn);
withWizard = new IconRow(wiz, fcn);
} else {
withoutWizard = Icons.FORMULA_ICON;
withWizard = null;
}
}