/** */ package socialnetwork; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Person'. * * *

* The following features are supported: *

* * * @see socialnetwork.SocialnetworkPackage#getPerson() * @model * @generated */ public interface Person extends EObject { /** * Returns the value of the 'Friends' reference list. * The list contents are of type {@link socialnetwork.Person}. * * * @return the value of the 'Friends' reference list. * @see socialnetwork.SocialnetworkPackage#getPerson_Friends() * @model * @generated */ EList getFriends(); /** * Returns the value of the 'Name' attribute. * The default value is "Name". * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see socialnetwork.SocialnetworkPackage#getPerson_Name() * @model default="Name" * @generated */ String getName(); /** * Sets the value of the '{@link socialnetwork.Person#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // Person