public Person()

in crud/src/main/java/org/apache/struts/crud/model/Person.java [29:42]


    public Person(Integer id, String firstName, String lastName, String sport, 
                String gender, Country country, boolean over21, String[] carModels, 
                String email, String phoneNumber) {
        this.personId = id;
        this.firstName = firstName;
        this.lastName = lastName;
        this.sport = sport;
        this.gender = gender;
        this.country = country;
        this.over21 = over21;
        this.carModels = carModels;
        this.email = email;
        this.phoneNumber = phoneNumber;
    }