Lines Matching defs:fg
547 Color fg = (Color) a.getAttribute(Foreground);
548 if (fg == null) {
549 fg = Color.black;
551 return fg;
558 * @param fg the color
560 public static void setForeground(MutableAttributeSet a, Color fg) {
561 a.addAttribute(Foreground, fg);
571 Color fg = (Color) a.getAttribute(Background);
572 if (fg == null) {
573 fg = Color.black;
575 return fg;
582 * @param fg the color
584 public static void setBackground(MutableAttributeSet a, Color fg) {
585 a.addAttribute(Background, fg);