I am trying to create a separate CustomFont class in which I can different attributes of text. So I created a new class extended Font and inside created a private class Drawing which extends JComponent. I change the color and other characteristics of font and text inside paintComponent method.
The problem is paintComponent method is not getting called. I am sure I am making some mistake.
Here is the code:
import javax.swing.JComponent;
public class CustomFont extends Font {
private String string;
private int FontStyle;
public CustomFont(String text, int style) {
super("Serif", style, 15);
FontStyle = style;
string = text;
Drawing draw = new Drawing();
draw.repaint();
}
private class Drawing extends JComponent {
public void paintComponent(Graphics g) {
Font font = new Font("Serif", Font.BOLD, 15);
g.setFont(font);
g.setColor(Color.YELLOW);
g.drawString(string, getX(), getY());
}
}
}


FontStylewould befontStyle.) – Dave Newton Jan 5 at 17:46