スーパークラスCar
と、拡張する 2 つのクラスCar
( CarToRent
、およびCarToSell
) があります。クラスCarCompany
では、コンストラクターに GUI を実装します。
ボタンがあります:
addCarToRentButton = new JButton("Add Car To Rent");
contentPane.add(addCarToRentButton);
addCarToRentButton.addActionListener(this);
Car
これをリッスンするアクションを追加して、ボタンをクリックすると、3 つのテキスト フィールドのデータがクラスの配列に入力されるようにするにはどうすればよいですか? (テキスト フィールドはdailyRateTextField
、descriptionTextField
およびdownPaymentTextField
)。