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

* The following features are supported: *

* * * @see socialnetwork.SocialnetworkPackage#getSocialNetwork() * @model * @generated */ public interface SocialNetwork extends EObject { /** * Returns the value of the 'Name' attribute. * The default value is "SocialNetwork". * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see socialnetwork.SocialnetworkPackage#getSocialNetwork_Name() * @model default="SocialNetwork" * @generated */ String getName(); /** * Sets the value of the '{@link socialnetwork.SocialNetwork#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Persons' containment reference list. * The list contents are of type {@link socialnetwork.Person}. * * * @return the value of the 'Persons' containment reference list. * @see socialnetwork.SocialnetworkPackage#getSocialNetwork_Persons() * @model containment="true" * @generated */ EList getPersons(); } // SocialNetwork