org.nasdanika.models.party.WebAddress Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.party;
/**
*
* A representation of the model object 'Web Address'.
*
*
*
* URL.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.party.WebAddress#getUrl Url}
*
*
* @see org.nasdanika.models.party.PartyPackage#getWebAddress()
* @model
* @generated
*/
public interface WebAddress extends ContactMethod {
/**
* Returns the value of the 'Url' attribute.
*
*
*
* URL.
*
* @return the value of the 'Url' attribute.
* @see #setUrl(String)
* @see org.nasdanika.models.party.PartyPackage#getWebAddress_Url()
* @model annotation="urn:org.nasdanika default-feature='true'"
* @generated
*/
String getUrl();
/**
* Sets the value of the '{@link org.nasdanika.models.party.WebAddress#getUrl Url}' attribute.
*
*
* @param value the new value of the 'Url' attribute.
* @see #getUrl()
* @generated
*/
void setUrl(String value);
} // WebAddress