blob: c729ab023ad1365162c2195fe9ae768f9213ee75 [file] [log] [blame]
/**
*/
package graph;
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Attribute</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link graph.Attribute#getOp <em>Op</em>}</li>
* <li>{@link graph.Attribute#getValue <em>Value</em>}</li>
* <li>{@link graph.Attribute#getType <em>Type</em>}</li>
* </ul>
*
* @see graph.GraphPackage#getAttribute()
* @model
* @generated
*/
public interface Attribute extends EObject {
/**
* Returns the value of the '<em><b>Op</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Op</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Op</em>' attribute.
* @see #setOp(String)
* @see graph.GraphPackage#getAttribute_Op()
* @model
* @generated
*/
String getOp();
/**
* Sets the value of the '{@link graph.Attribute#getOp <em>Op</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Op</em>' attribute.
* @see #getOp()
* @generated
*/
void setOp(String value);
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(String)
* @see graph.GraphPackage#getAttribute_Value()
* @model
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link graph.Attribute#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(EAttribute)
* @see graph.GraphPackage#getAttribute_Type()
* @model required="true"
* @generated
*/
EAttribute getType();
/**
* Sets the value of the '{@link graph.Attribute#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(EAttribute value);
} // Attribute