package com.jguru; public class FormBean { // declare properties for firstname, lastname, notify and email with the names //matching the corrosponding form input elements private String[] languages; public FormBean() { firstName=""; lastName=""; email=""; languages = new String[] { "1" }; notify=""; } //write getter methods for firstname, lastname, notify, email and languages //write setter methods for firstname, lastname, notify, email and languages }