de.janrufmonitor.framework
Interface IName


public interface IName

This interface must be implemented by a name object, which should be used in the framework.

Author:
Thilo Brandt

Method Summary
 String getAdditional()
          Gets the additional information of the name object
 String getFirstname()
          Gets the firstname value of the name object
 String getFullname()
          Gets the fullname value of the name object
 String getLastname()
          Gets the lastname value of the name object
 void setAdditional(String additional)
          Sets the additional information of the name object
 void setFirstname(String firstname)
          Sets the firstname of the name object
 void setLastname(String lastname)
          Sets the lastname of the name object
 

Method Detail

getFirstname

String getFirstname()
Gets the firstname value of the name object

Returns:
firstname value

getLastname

String getLastname()
Gets the lastname value of the name object

Returns:
lastname value

getAdditional

String getAdditional()
Gets the additional information of the name object

Returns:
additional information

getFullname

String getFullname()
Gets the fullname value of the name object

Returns:
fullname value

setFirstname

void setFirstname(String firstname)
Sets the firstname of the name object

Parameters:
firstname - firstname to be set.

setLastname

void setLastname(String lastname)
Sets the lastname of the name object

Parameters:
lastname - lastname to be set.

setAdditional

void setAdditional(String additional)
Sets the additional information of the name object

Parameters:
additional - additional information to be set.


Copyright © 2010 by Thilo Brandt. All Rights Reserved.