私がやりたいことは次のとおりです。クラスの 1 つは、すべての JButton を含む JFrame 用です。別のクラスに、JFrame クラスで行われたアクションをリッスンさせたいと考えています。以下のコードを参照してください。
public class Frame extends JFrame{
//all the jcomponents in here
}
public class listener implements ActionListener{
//listen to the actions made by the Frame class
}
御時間ありがとうございます。