org.eclipse.emf.examples.extlibrary
Interface Person

All Superinterfaces:
Addressable, EObject, Notifier
All Known Subinterfaces:
Borrower, Employee, Writer
All Known Implementing Classes:
BorrowerImpl, EmployeeImpl, PersonImpl, WriterImpl

public interface Person
extends Addressable

A representation of the model object 'Person'.

The following features are supported:

See Also:
EXTLibraryPackage.getPerson()

Method Summary
 java.lang.String getFirstName()
          Returns the value of the 'First Name' attribute
 java.lang.String getLastName()
          Returns the value of the 'Last Name' attribute
 void setFirstName(java.lang.String value)
          Sets the value of the 'First Name' attribute
 void setLastName(java.lang.String value)
          Sets the value of the 'Last Name' attribute
 
Methods inherited from interface org.eclipse.emf.examples.extlibrary.Addressable
getAddress, setAddress
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

getFirstName

java.lang.String getFirstName()
Returns the value of the 'First Name' attribute.

Returns:
the value of the 'First Name' attribute.
See Also:
setFirstName(String), EXTLibraryPackage.getPerson_FirstName()

setFirstName

void setFirstName(java.lang.String value)
Sets the value of the 'First Name' attribute.

Parameters:
value - the new value of the 'First Name' attribute.
See Also:
getFirstName()

getLastName

java.lang.String getLastName()
Returns the value of the 'Last Name' attribute.

Returns:
the value of the 'Last Name' attribute.
See Also:
setLastName(String), EXTLibraryPackage.getPerson_LastName()

setLastName

void setLastName(java.lang.String value)
Sets the value of the 'Last Name' attribute.

Parameters:
value - the new value of the 'Last Name' attribute.
See Also:
getLastName()

Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.