static SimpleAttributeSet style_foreground(Color c) { ret style_foreground(new SimpleAttributeSet, c); } static SimpleAttributeSet style_foreground(SimpleAttributeSet a, Color c) { StyleConstants.setForeground(a, c); ret a; } static SimpleAttributeSet style_foreground(Color c, SimpleAttributeSet a) { ret style_foreground(a, c); }