コード例 #1
0
 public ScKilogramText newApplicableKilogramsText(String label) {
   ScKilogramText e;
   e = new ScKilogramText();
   e.setValue(getApplicableKilogramsAdaptor());
   e.setLabel(label);
   return e;
 }
コード例 #2
0
 public ScKilogramText newCompleteKilogramText(String label) {
   ScKilogramText e;
   e = new ScKilogramText();
   e.setValue(getCompleteKilogramAdaptor());
   e.setLabel(label);
   return e;
 }
コード例 #3
0
 public ScKilogramText newApplicableKilogramsBoldText(String label) {
   ScKilogramText e;
   e = newApplicableKilogramsText(label);
   e.setBold();
   return e;
 }
コード例 #4
0
 public ScKilogramText newCompleteKilogramBoldText(String label) {
   ScKilogramText e;
   e = newCompleteKilogramText(label);
   e.setBold();
   return e;
 }
コード例 #5
0
 public ScKilogramText newWorkingKilogramBoldText(String label) {
   ScKilogramText e;
   e = newWorkingKilogramText(label);
   e.setBold();
   return e;
 }