package pack10;import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Test
{
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
ButtonFrame frame=new ButtonFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
});
}
}
class ButtonFrame extends JFrame
{
public ButtonFrame()
{
setTitle("Button Test");
setSize(W,H);

JButton yellowButton=new JButton("Yellow");
JButton blueButton=new JButton("Blue");
JButton redButton=new JButton("Red");
//JButton ha=new JButton("h");

buttonPanel=new JPanel();
buttonPanel.add(yellowButton);
buttonPanel.add(blueButton);
buttonPanel.add(redButton);
//buttonPanel.add(ha);

add(buttonPanel);

ActionListener yellowAction=new ColorAction(Color.YELLOW);
ActionListener blueAction=new ColorAction(Color.BLUE);
ActionListener redAction=new ColorAction(Color.RED);
yellowButton.addActionListener(yellowAction);
blueButton.addActionListener(blueAction);
redButton.addActionListener(redAction); }


private class ColorAction implements ActionListener
{
public ColorAction(Color c)
{
backgroundColor=c;
}
public void actionPerformed(ActionEvent event)
{
buttonPanel.setBackground(backgroundColor);   //断点设在此处 }
private Color backgroundColor;
} private JPanel buttonPanel;
private static final int W=300;
private static final int H=200;}如注释所示,断点设在那句话上。
我的问题是:这个程序可以正常运行,但在调试时却出现了"source not found"的问题,下面还有个按钮“Edit Source Lookup Path”请问这是怎么回事?