Here you can find the source of emphasizeButton(AbstractButton btn)
Parameter | Description |
---|---|
btn | a parameter |
public static void emphasizeButton(AbstractButton btn)
//package com.java2s; //License from project: Academic Free License import java.awt.Color; import javax.swing.AbstractButton; public class Main { /**//from ww w . j av a2 s . c o m * Try to switch the background and foreground colors. * * @param btn */ public static void emphasizeButton(AbstractButton btn) { Color col = btn.getBackground(); btn.setBackground(btn.getForeground()); btn.setForeground(col); } }