/**
* <copyright>
* </copyright>
*
* $Id$
*/
package fr.inria.atlanmod.collaboro.notation;
import org.eclipse.emf.ecore.EAttribute;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Value</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link fr.inria.atlanmod.collaboro.notation.Value#getSeparator <em>Separator</em>}</li>
* <li>{@link fr.inria.atlanmod.collaboro.notation.Value#getAttribute <em>Attribute</em>}</li>
* </ul>
* </p>
*
* @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getValue()
* @model abstract="true"
* @generated
*/
public interface Value extends TextualElement {
/**
* Returns the value of the '<em><b>Separator</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Separator</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Separator</em>' attribute.
* @see #setSeparator(String)
* @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getValue_Separator()
* @model
* @generated
*/
String getSeparator();
/**
* Sets the value of the '{@link fr.inria.atlanmod.collaboro.notation.Value#getSeparator <em>Separator</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Separator</em>' attribute.
* @see #getSeparator()
* @generated
*/
void setSeparator(String value);
/**
* Returns the value of the '<em><b>Attribute</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attribute</em>' reference.
* @see #setAttribute(EAttribute)
* @see fr.inria.atlanmod.collaboro.notation.NotationPackage#getValue_Attribute()
* @model required="true"
* @generated
*/
EAttribute getAttribute();
/**
* Sets the value of the '{@link fr.inria.atlanmod.collaboro.notation.Value#getAttribute <em>Attribute</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attribute</em>' reference.
* @see #getAttribute()
* @generated
*/
void setAttribute(EAttribute value);
} // Value