Class Person
- java.lang.Object
-
- org.apache.wicket.examples.velocity.Person
-
- All Implemented Interfaces:
Serializable
public final class Person extends Object implements Serializable
Simple person object.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFirstName()Gets the firstName.StringgetLastName()Gets the lastName.voidsetFirstName(String firstName)Sets the firstName.voidsetLastName(String lastName)Sets the lastName.
-
-
-
Method Detail
-
getFirstName
public final String getFirstName()
Gets the firstName.- Returns:
- firstName
-
getLastName
public final String getLastName()
Gets the lastName.- Returns:
- lastName
-
setFirstName
public final void setFirstName(String firstName)
Sets the firstName.- Parameters:
firstName- firstName
-
setLastName
public final void setLastName(String lastName)
Sets the lastName.- Parameters:
lastName- lastName
-
-