blob: 7703ff12bb9ab1636ca458a4e59c86dc80ea811a [file] [log] [blame]
/**
* Copyright (c) 2015, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*/
package org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml;
/**
* <!-- 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 org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Attribute#getOwner <em>Owner</em>}</li>
* <li>{@link org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Attribute#getType <em>Type</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.SimpleumlPackage#getAttribute()
* @model
* @generated
*/
public interface Attribute extends UMLModelElement {
/**
* Returns the value of the '<em><b>Owner</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Class#getAttributes <em>Attributes</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owner</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Owner</em>' container reference.
* @see #setOwner(org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Class)
* @see org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.SimpleumlPackage#getAttribute_Owner()
* @see org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Class#getAttributes
* @model opposite="attributes" required="true" transient="false"
* @generated
*/
org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Class getOwner();
/**
* Sets the value of the '{@link org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Attribute#getOwner <em>Owner</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owner</em>' container reference.
* @see #getOwner()
* @generated
*/
void setOwner(org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Class value);
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Classifier#getTypeOpposite <em>Type Opposite</em>}'.
* <!-- 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(Classifier)
* @see org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.SimpleumlPackage#getAttribute_Type()
* @see org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.Classifier#getTypeOpposite
* @model opposite="typeOpposite" required="true"
* @generated
*/
Classifier getType();
/**
* Sets the value of the '{@link org.eclipse.qvtd.examples.qvtcore.uml2rdbms.simpleuml.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(Classifier value);
} // Attribute