org.springframework.batch.sample.domain.person
Class Person

java.lang.Object
  extended by org.springframework.batch.sample.domain.person.Person

public class Person
extends Object


Constructor Summary
Person()
           
 
Method Summary
 boolean equals(Object o)
           
 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()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Person

public Person()
Method Detail

getAddress

public Address getAddress()
Returns:
the address

setAddress

public void setAddress(Address address)
Parameters:
address - the address to set

getAge

public int getAge()
Returns:
the age

setAge

public void setAge(int age)
Parameters:
age - the age to set

getFirstName

public String getFirstName()
Returns:
the firstName

setFirstName

public void setFirstName(String firstName)
Parameters:
firstName - the firstName to set

getChildren

public List<Child> getChildren()
Returns:
the children

setChildren

public void setChildren(List<Child> children)
Parameters:
children - the children to set

getLast_name

public String getLast_name()
Intentionally non-standard method name for testing purposes

Returns:
the last_name

setLast_name

public void setLast_name(String last_name)
Intentionally non-standard method name for testing purposes

Parameters:
last_name - the last_name to set

getTitle

public String getTitle()
Returns:
the person_title

setTitle

public void setTitle(String title)
Parameters:
title - the person title to set

toString

public String toString()
Overrides:
toString in class Object

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object


Copyright © 2009 SpringSource. All Rights Reserved.