public class Person extends Object
| Constructor and Description |
|---|
Person() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
Address |
getAddress() |
int |
getAge() |
List<Child> |
getChildren() |
String |
getFirstName() |
String |
getLast_name()
Intentionally non-standard method name for testing purposes
|
String |
getTitle() |
int |
hashCode() |
void |
setAddress(Address address) |
void |
setAge(int age) |
void |
setChildren(List<Child> children) |
void |
setFirstName(String firstName) |
void |
setLast_name(String last_name)
Intentionally non-standard method name for testing purposes
|
void |
setTitle(String title) |
String |
toString() |
public Address getAddress()
public void setAddress(Address address)
address - the address to setpublic int getAge()
public void setAge(int age)
age - the age to setpublic String getFirstName()
public void setFirstName(String firstName)
firstName - the firstName to setpublic String getLast_name()
public void setLast_name(String last_name)
last_name - the last_name to setpublic String getTitle()
public void setTitle(String title)
title - the person title to setCopyright © 2013 SpringSource. All Rights Reserved.