これは、BlueJで作成され、BlueJパッケージを含むzipファイルとして送信された割り当て用です。
パッケージには、いくつかの独立したコンソールプログラムが含まれています。別の「コントロールパネル」プログラムを作成しようとしています。各プログラムを起動するためのラジオボタン付きのGUIです。
これが私が試したリスナークラスの2つです:
private class RadioButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == arraySearchButton)
{
new ArraySearch();
}//end if
else if(e.getSource() == workerDemoButton)
{
new WorkerDemo();
}//end else if
}//end actionPerformed
}//end class RadioButtonListener
private class RunButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if(arraySearchButton.isSelected())
{
new ArraySearch();
}//end if
else if(workerDemoButton.isSelected())
{
new WorkerDemo();
}//end else if
}//end actionPerformed
}//end class RunButtonListener
前もって感謝します!