TextArea と TextField(イベント処理)

import java.awt.*;
import java.awt.event.*;

public class Test {
	public static void main (String[] args)
	{
		Win win = new Win("Test Window", "Test Data");
	}
}

/*******************/
/* クラスWinの定義 */
/*******************/
class Win extends Frame implements ActionListener, TextListener {

	TextField tx1, tx2;
	TextArea ta;

	/******************/
	/* コンストラクタ */
	/******************/
	Win (String name, String data)
	{
					// Frameクラスのコンストラクタ(Windowのタイトルを引き渡す)
		super(name);
					// レイアウトの変更(行,列,水平ギャップ,垂直ギャップ)
		setLayout(new GridLayout(2, 1, 5, 10));
		Font f = new Font("MS 明朝", Font.PLAIN, 20);
					// 上のパネル
						// パネルの追加
		Panel pn1 = new Panel();
		pn1.setLayout(new GridLayout(2, 1, 5, 10));
		add(pn1);
						// テキストフィールドの追加
		tx1 = new TextField();
		tx1.setFont(f);
		tx1.addActionListener(this);
		pn1.add(tx1);

		tx2 = new TextField();
		tx2.setFont(f);
		pn1.add(tx2);
					// 下のパネル
						// パネルの追加
		Panel pn2 = new Panel();
		add(pn2);
						// テキストエリアの追加
		ta = new TextArea(4, 25);
		ta.setFont(f);
		ta.addTextListener(this);
		pn2.add(ta);
					// Windowの大きさ
		setSize(350, 300);
					// ウィンドウを表示
		setVisible(true);
					// イベントアダプタ
		addWindowListener(new WinEnd());
	}

	/******************************/
	/* 上,左,下,右の余白の設定 */
	/******************************/
	public Insets getInsets()
	{
		return new Insets(35, 10, 10, 10);
	}

	/********************************/
	/* 改行キーが押されたときの処理 */
	/********************************/
	public void actionPerformed(ActionEvent e)
	{
		String str;
		if (e.getSource() == tx1) {
			str = tx1.getText();
			ta.append(str + "\n");
		}
	}

	/****************************************/
	/* TextAreaの内容が変更されたときの処理 */
	/****************************************/
	public void textValueChanged(TextEvent e)
	{
		if (e.getSource() == ta) {
			tx2.setText("TextAreaが修正されました");
		}
	}

	/************/
	/* 終了処理 */
	/************/
	class WinEnd extends WindowAdapter
	{
		public void windowClosing(WindowEvent e) {
			System.exit(0);
		}
	}
}