public ScKilogramText newApplicableKilogramsText(String label) { ScKilogramText e; e = new ScKilogramText(); e.setValue(getApplicableKilogramsAdaptor()); e.setLabel(label); return e; }
public ScKilogramText newCompleteKilogramText(String label) { ScKilogramText e; e = new ScKilogramText(); e.setValue(getCompleteKilogramAdaptor()); e.setLabel(label); return e; }
public ScKilogramText newApplicableKilogramsBoldText(String label) { ScKilogramText e; e = newApplicableKilogramsText(label); e.setBold(); return e; }
public ScKilogramText newCompleteKilogramBoldText(String label) { ScKilogramText e; e = newCompleteKilogramText(label); e.setBold(); return e; }
public ScKilogramText newWorkingKilogramBoldText(String label) { ScKilogramText e; e = newWorkingKilogramText(label); e.setBold(); return e; }