org.nasdanika.models.party.EMail Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.party;
/**
*
* A representation of the model object 'EMail'.
*
*
*
* E-mail address.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.party.EMail#getEMailAddress EMail Address}
*
*
* @see org.nasdanika.models.party.PartyPackage#getEMail()
* @model
* @generated
*/
public interface EMail extends ContactMethod {
/**
* Returns the value of the 'EMail Address' attribute.
*
*
*
* E-Mail address.
*
* @return the value of the 'EMail Address' attribute.
* @see #setEMailAddress(String)
* @see org.nasdanika.models.party.PartyPackage#getEMail_EMailAddress()
* @model annotation="urn:org.nasdanika default-feature='true'"
* @generated
*/
String getEMailAddress();
/**
* Sets the value of the '{@link org.nasdanika.models.party.EMail#getEMailAddress EMail Address}' attribute.
*
*
* @param value the new value of the 'EMail Address' attribute.
* @see #getEMailAddress()
* @generated
*/
void setEMailAddress(String value);
} // EMail