net.sf.tacos.demo.model
Class Name

java.lang.Object
  extended by net.sf.tacos.demo.model.Name

public class Name
extends Object

A person's name.

Author:
Leonardo Quijano

Constructor Summary
Name()
          Default constructor.
 
Method Summary
 String getFirstName()
           
 String getFullName()
           
 String getLastName()
           
 void setFirstName(String firstName)
           
 void setFullName(String fullName)
           
 void setLastName(String lastName)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Name

public Name()
Default constructor.

Method Detail

getFirstName

public String getFirstName()
Returns:
Returns the firstName.

setFirstName

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

getLastName

public String getLastName()
Returns:
Returns the lastName.

setLastName

public void setLastName(String lastName)
Parameters:
lastName - The lastName to set.

getFullName

public String getFullName()
Returns:
Returns the fullName.

setFullName

public void setFullName(String fullName)
Parameters:
fullName - The fullName to set.