blob: 49eb82f66d447c1b4784ab4b3651c16bdf2dad48 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Person.java,v 1.1 2006/08/14 05:08:58 mtaal Exp $
*/
package extlibrary;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Person</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link extlibrary.Person#getFirstName <em>First Name</em>}</li>
* <li>{@link extlibrary.Person#getLastName <em>Last Name</em>}</li>
* </ul>
* </p>
*
* @see extlibrary.ExtlibraryPackage#getPerson()
* @model
* @generated
*/
public interface Person extends Addressable {
/**
* Returns the value of the '<em><b>First Name</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>First Name</em>' attribute isn't clear, there really should be more
* of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>First Name</em>' attribute.
* @see #setFirstName(String)
* @see extlibrary.ExtlibraryPackage#getPerson_FirstName()
* @model required="true"
* @generated
*/
String getFirstName();
/**
* Sets the value of the '{@link extlibrary.Person#getFirstName <em>First Name</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>First Name</em>' attribute.
* @see #getFirstName()
* @generated
*/
void setFirstName(String value);
/**
* Returns the value of the '<em><b>Last Name</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Last Name</em>' attribute isn't clear, there really should be more
* of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Last Name</em>' attribute.
* @see #setLastName(String)
* @see extlibrary.ExtlibraryPackage#getPerson_LastName()
* @model required="true"
* @generated
*/
String getLastName();
/**
* Sets the value of the '{@link extlibrary.Person#getLastName <em>Last Name</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Last Name</em>' attribute.
* @see #getLastName()
* @generated
*/
void setLastName(String value);
} // Person