2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.shale.usecases.symbols;
19
20 /***
21 * <p>This class represents a new category of a person documenting
22 * their employer or business entity name.</p>
23 */
24 public class BusinessPerson extends FullPerson {
25 private String businessName = null;
26
27 /***
28 * @return business Name associated with a person.
29 */
30 public String getBusinessName() {
31 return businessName;
32 }
33
34 /***
35 * @param businessName Business name associated with a person.
36 */
37 public void setBusinessName(String businessName) {
38 this.businessName = businessName;
39 }
40
41 }