Is it possible to make a JButton transparent (including the border) but not the text? I extend swing\'s JButton and override this:
@Override public void pain
button.setOpaque(false); button.setContentAreaFilled(false); button.setBorderPainted(false);