bhome = new JButton("Home");
bhome.setFont(font);
bhome.setFocusPainted(false);
bhome.setSize(100, 25);
bhome.setLocation(70, 30);
bhome.addActionListener(this);
panel.add(bhome);
これは私の JButton です。新しい関数をそれにリンクするにはどうすればよいですか? 機能的には、ホームボタンをクリックすると、システム/プログラムのホームページに移動します。