import javax.swing.AbstractButton;
import javax.swing.JButton;
import javax.swing.JFrame;
public class HTMLDemoAbstractButton {
public static void main(String[] a) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
AbstractButton bn = new JButton();
bn.setText ("Last Name
+ " color=red> (mandatory) ");
frame.add(bn);
frame.setSize(300, 200);
frame.setVisible(true);
}
}