1 /**
2 * Extension Point initial generated at: Thu Jul 03 22:38:37 CEST 2008
3 */
4 package org.company.thesandbox.domain;
5
6 /**
7 * A Person represents a legal person.
8 *
9 * @author Generated by Mod4j BusinessDomain DSL
10 */
11 public class Person extends PersonImplBase {
12
13 /**
14 * Default no-argument constructor for Person
15 */
16 protected Person() {
17
18 }
19
20 /**
21 * Minimal constructor for Person
22 *
23 * @param firstName
24 * (string) First name of the person.
25 * @param lastName
26 * (string) Last name of the person.
27 */
28 public Person(String firstName, String lastName) {
29 super(firstName, lastName);
30 }
31
32 }