我有我的班级声明:
public class myRightPanel extends JPanel
然后我像这样覆盖我的超类的paintComponent:
public void paintComponent(Graphics g){
super.paintComponents(g);
//Draw bunch of things here
}
现在事实证明我还需要一个方法,它接受两个整数(x,y)参数,并在我已经myRightPanel
在该坐标处绘制的东西上添加一些东西。当我已经覆盖我的时,我该怎么做paintComponent()
?