jcpadで簡易電卓を作っているのですが、ここから先がどうすればいいかわかりません。教えていただけますでしょうか。
package task01;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
public class task01 extends JFrame implements ActionListener{
//コンテナのインスタンス変数を定義 Container container; //6つの部品のインスタンス変数を定義 JLabel atai1Label; JLabel atai2Label; JLabel resultLabel; JTextField atai1Field; JTextField atai2Field; JButton tasuButton; JButton hikuButton; JButton kakeruButton; JButton waruButton; JButton cancelButton; //コンストラクタ public task01(String title){ //タイトル設定 this.setTitle(title); //表示位置設定 this.setLocation(200,200); //表示サイズ設定 this.setSize(300,200); //JFrameからコンテナを取得 container=this.getContentPane(); //コンテナのレイアウトにnullを設定 container.setLayout(null); //ラベル部品のインアウトにnullを設定 atai1Label=new JLabel("値1"); atai2Label=new JLabel("値2"); resultLabel=new JLabel("結果"); //入力フィールド部品のインスタンス生成 atai1Field=new JTextField(); atai2Field=new JTextField(); //ボタン部品のインスタンス生成 tasuButton=new JButton("+"); hikuButton=new JButton("-"); kakeruButton=new JButton("×"); waruButton=new JButton("÷"); cancelButton=new JButton("C"); //部品の座標とサイズの設定 atai1Label.setLocation(20,30); atai1Label.setSize(80,20); atai2Label.setLocation(20,60); atai2Label.setSize(80,20); resultLabel.setLocation(20,60); resultLabel.setSize(80,20); atai1Field.setLocation(100,30); atai1Field.setSize(150,20); atai2Field.setLocation(100,60); atai2Field.setSize(150,20); tasuButton.setLocation(30,100); tasuButton.setSize(100,30); hikuButton.setLocation(140,100); hikuButton.setSize(100,30); kakeruButton.setLocation(30,100); kakeruButton.setSize(100,30); waruButton.setLocation(30,100); waruButton.setSize(100,30); cancelButton.setLocation(30,100); cancelButton.setSize(100,30); //部品をコンテナに追加 container.add(atai1Label); container.add(atai2Label); container.add(resultLabel); container.add(atai1Field); container.add(atai2Field); container.add(tasuButton); container.add(hikuButton); container.add(kakeruButton); container.add(waruButton); container.add(cancelButton); //ボタンにアクションリスナを追加 tasuButton.addActionListener(this); hikuButton.addActionListener(this); kakeruButton.addActionListener(this); waruButton.addActionListener(this); cancelButton.addActionListener(this); } public static void main(String[] args){ //タイトル設定と可視化 task01 loginView=new task01("電卓"); loginView.setVisible(true); } public void actionPerformed(ActionEvent event){ value1=Integer.parseInt(value1Txt.getTxt()); value2=Integer.parseInt(value2Txt.getTxt());