私はこの第1クラスを持っています:
private class proceedAL implements ActionListener
{
public void actionPerformed(ActionEvent z)
{
String x = (String)mouseB.getActionCommand();
String y = (String)monitorB.getActionCommand();
ComputerSimulator me = new connect(x,y);
}
}
そして別のクラス:
public class ComputerSimulator extends JFrame
{
public void connect(String x, String y)
{
String i, j;
c2.setText(x);
c3.setText(y);
}
このエラーが表示されます: シンボルが見つかりません - クラス接続
私は何が欠けていますか?私はプログラミングの初心者で、助けが必要です