/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.examples.eclipsecon; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Presenter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.examples.eclipsecon.Presenter#getPhone <em>Phone</em>}</li> * <li>{@link org.eclipse.gmf.examples.eclipsecon.Presenter#getProfile <em>Profile</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.examples.eclipsecon.EclipseconPackage#getPresenter() * @model * @generated */ public interface Presenter extends Participant { /** * Returns the value of the '<em><b>Phone</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Phone</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Phone</em>' attribute. * @see #setPhone(int) * @see org.eclipse.gmf.examples.eclipsecon.EclipseconPackage#getPresenter_Phone() * @model * @generated */ int getPhone(); /** * Sets the value of the '{@link org.eclipse.gmf.examples.eclipsecon.Presenter#getPhone <em>Phone</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Phone</em>' attribute. * @see #getPhone() * @generated */ void setPhone(int value); /** * Returns the value of the '<em><b>Profile</b></em>' containment reference. * The default value is <code>""</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Profile</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Profile</em>' containment reference. * @see #setProfile(Profile) * @see org.eclipse.gmf.examples.eclipsecon.EclipseconPackage#getPresenter_Profile() * @model containment="true" * @generated */ Profile getProfile(); /** * Sets the value of the '{@link org.eclipse.gmf.examples.eclipsecon.Presenter#getProfile <em>Profile</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Profile</em>' containment reference. * @see #getProfile() * @generated */ void setProfile(Profile value); } // Presenter