Example #1
0
 public void setForeground(Color fg) {
   super.setForeground(fg);
   if (label != null) {
     label.setForeground(fg);
     draw.setForeground(fg);
   }
 }
Example #2
0
 public void setBackground(Color bg) {
   super.setBackground(bg);
   if (label != null) {
     label.setBackground(bg);
     draw.setBackground(bg);
   }
 }
Example #3
0
 public void setScale(boolean doScale) {
   draw.setScale(doScale);
 }
Example #4
0
 public double getValue() {
   return (draw.getValue());
 }
Example #5
0
 public void setValue(double v) {
   draw.setValue(v);
 }
Example #6
0
 public void setLevelForeground(Color lfg) {
   draw.setLevelForeground(lfg);
 }
Example #7
0
 public void setLevelBackground(Color lbg) {
   draw.setLevelBackground(lbg);
 }